diff --git a/configuration/modules/system.nix b/configuration/modules/system.nix index 279ed8a..3a34f3a 100644 --- a/configuration/modules/system.nix +++ b/configuration/modules/system.nix @@ -39,9 +39,8 @@ programs.noisetorch.enable = true; console.keyMap = "cz-lat2"; -services.xserver.xkb = { - layout = "cz"; -}; + services.xserver.xkb.layout = "cz"; + time.timeZone = "Europe/Prague"; i18n = { @@ -67,4 +66,8 @@ services.xserver.xkb = { openFirewall = true; }; }; + + environment.systemPackages = { + pkgs.ripgrep + }; } diff --git a/home/modules/niri.nix b/home/modules/niri.nix index f832f7d..7944d6b 100644 --- a/home/modules/niri.nix +++ b/home/modules/niri.nix @@ -104,7 +104,7 @@ binds = { "Mod+Q".action.close-window = []; - "Mod+Return".action.spawn = ["foot"]; + "Mod+Return".action.spawn = ["alacritty"]; "Mod+A".action.spawn = ["fuzzel"]; "Mod+B".action.spawn = ["zen"]; diff --git a/home/modules/shell/shell.nix b/home/modules/shell/shell.nix index 7cc1aff..2891969 100644 --- a/home/modules/shell/shell.nix +++ b/home/modules/shell/shell.nix @@ -66,15 +66,6 @@ programs = { btop.enable = true; - foot = { - enable = true; - settings = { - main = { - term = "xterm-256color"; - }; - }; - }; - git = { enable = true; package = pkgs.gitFull;