diff --git a/home/hosts/vps.nix b/home/hosts/vps.nix index 2774ef8..d601bc3 100644 --- a/home/hosts/vps.nix +++ b/home/hosts/vps.nix @@ -8,7 +8,7 @@ ../modules/cli/ripgrep.nix ../modules/cli/sops.nix ../modules/cli/yazi.nix - ../modules/cli/zsh.nix + ../modules/cli/btop.nix ]; home = { diff --git a/home/hosts/y2q.nix b/home/hosts/y2q.nix index 509621d..fa93732 100644 --- a/home/hosts/y2q.nix +++ b/home/hosts/y2q.nix @@ -3,14 +3,13 @@ { imports = [ inputs.nixvim.homeModules.nixvim - inputs.sops-nix.homeManagerModules.sops - ] ++ ( - let - modulesPath = ../modules; - cliModules = builtins.attrNames (builtins.readDir (modulesPath + "/cli/")); - in - map (module: modulesPath + "/cli/${module}") cliModules - ); + + ../modules/cli/git.nix + ../modules/cli/ripgrep.nix + ../modules/cli/btop.nix + ../modules/cli/yazi.nix + ../modules/cli/nixvim + ]; home = { username = "android"; diff --git a/home/modules/graphical/btop.nix b/home/modules/cli/btop.nix similarity index 100% rename from home/modules/graphical/btop.nix rename to home/modules/cli/btop.nix diff --git a/hosts/nixos/modules/services/greetd.nix b/hosts/nixos/modules/services/greetd.nix index 795f7ef..4650595 100644 --- a/hosts/nixos/modules/services/greetd.nix +++ b/hosts/nixos/modules/services/greetd.nix @@ -5,7 +5,7 @@ enable = true; settings = { default_session = { - command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --remember --remember-session"; + command = "${pkgs.tuigreet}/bin/tuigreet --time --remember --remember-session"; user = "greeter"; }; };