pinwheel: Extract foot module
This commit is contained in:
@@ -15,6 +15,7 @@
|
|||||||
./modules/git
|
./modules/git
|
||||||
./modules/zsh
|
./modules/zsh
|
||||||
./modules/vim
|
./modules/vim
|
||||||
|
./modules/foot
|
||||||
./modules/syncthing
|
./modules/syncthing
|
||||||
./modules/firefox
|
./modules/firefox
|
||||||
./modules/calibre
|
./modules/calibre
|
||||||
|
|||||||
@@ -12,17 +12,6 @@
|
|||||||
bemenu
|
bemenu
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.foot = {
|
|
||||||
enable = true;
|
|
||||||
|
|
||||||
settings = {
|
|
||||||
main = {
|
|
||||||
term = "xterm-256color";
|
|
||||||
font = "DejaVuSansM Nerd Font Mono:size=14";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.tmux = {
|
programs.tmux = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
@@ -151,7 +140,6 @@
|
|||||||
"$mod, x, exec, ${pkgs.swaylock}/bin/swaylock"
|
"$mod, x, exec, ${pkgs.swaylock}/bin/swaylock"
|
||||||
"$mod SHIFT, x, exec, systemctl suspend"
|
"$mod SHIFT, x, exec, systemctl suspend"
|
||||||
|
|
||||||
"$mod, RETURN, exec, ${pkgs.foot}/bin/foot"
|
|
||||||
"$mod, SPACE, exec, bemenu-run --fn 'DejaVuSansM Nerd Font Mono 14'"
|
"$mod, SPACE, exec, bemenu-run --fn 'DejaVuSansM Nerd Font Mono 14'"
|
||||||
|
|
||||||
"$mod, ESCAPE, killactive"
|
"$mod, ESCAPE, killactive"
|
||||||
|
|||||||
23
hosts/pinwheel/modules/foot/default.nix
Normal file
23
hosts/pinwheel/modules/foot/default.nix
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
{ home-manager, pkgs, ... }:
|
||||||
|
{
|
||||||
|
home-manager.users.alex = {
|
||||||
|
programs.foot = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
settings = {
|
||||||
|
main = {
|
||||||
|
term = "xterm-256color";
|
||||||
|
font = "DejaVuSansM Nerd Font Mono:size=14";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
wayland.windowManager.hyprland = {
|
||||||
|
settings = {
|
||||||
|
bind = [
|
||||||
|
"$mod, RETURN, exec, ${pkgs.foot}/bin/foot"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user