From 2ade554397ccc95e6a83e29610cdce7555d0402d Mon Sep 17 00:00:00 2001 From: lightly-toasted Date: Fri, 10 Oct 2025 15:12:04 +0900 Subject: [PATCH 1/3] chore(nixos): rename greetd.tuigreet to tuigreet --- hosts/nixos/modules/services/greetd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; }; }; From 5b8f3930c2c9921acb965b136e3e0ce60c9e6938 Mon Sep 17 00:00:00 2001 From: lightly-toasted Date: Fri, 10 Oct 2025 16:21:15 +0900 Subject: [PATCH 2/3] feat(home): add btop on host vps and y2q - Added btop.nix on vps and y2q - Moved btop.nix from home/modules/graphical/ to home/modules/cli/ - Removed some unnecessary modules from y2q --- home/hosts/vps.nix | 1 + home/hosts/y2q.nix | 15 +++++++-------- home/modules/{graphical => cli}/btop.nix | 0 3 files changed, 8 insertions(+), 8 deletions(-) rename home/modules/{graphical => cli}/btop.nix (100%) diff --git a/home/hosts/vps.nix b/home/hosts/vps.nix index 2774ef8..7c0de81 100644 --- a/home/hosts/vps.nix +++ b/home/hosts/vps.nix @@ -9,6 +9,7 @@ ../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 From 8adce6595216ce21ae6f4a5c62a3406a8418798c Mon Sep 17 00:00:00 2001 From: lightly-toasted Date: Fri, 10 Oct 2025 16:24:25 +0900 Subject: [PATCH 3/3] feat(home/vps): remove zsh --- home/hosts/vps.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/home/hosts/vps.nix b/home/hosts/vps.nix index 7c0de81..d601bc3 100644 --- a/home/hosts/vps.nix +++ b/home/hosts/vps.nix @@ -8,7 +8,6 @@ ../modules/cli/ripgrep.nix ../modules/cli/sops.nix ../modules/cli/yazi.nix - ../modules/cli/zsh.nix ../modules/cli/btop.nix ];