This commit is contained in:
2025-08-26 14:03:42 -05:00
parent 7e10a8e74b
commit 87051915bc
3 changed files with 3 additions and 1 deletions

View File

@@ -13,7 +13,7 @@
./firefox ./firefox
]; ];
config = { config = lib.mkIf (config.homeconfig.host != "android") {
home.packages = lib.mkIf (!config.homeconfig.wal.enable) [ home.packages = lib.mkIf (!config.homeconfig.wal.enable) [
inputs.nixvim.packages.${pkgs.system}.default inputs.nixvim.packages.${pkgs.system}.default

View File

@@ -23,6 +23,7 @@
}; };
home.packages = with pkgs; ([ home.packages = with pkgs; ([
sops
killall killall
btop btop
zip zip

View File

@@ -25,6 +25,7 @@
homeconfig = { homeconfig = {
graphical = false; graphical = false;
minimal = true; minimal = true;
host = "android";
#homeScripts.enable = false; #homeScripts.enable = false;
}; };