This commit is contained in:
kenji
2025-08-13 08:43:02 -05:00
parent 9d2d722bc6
commit a29382966b
2 changed files with 2 additions and 12 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
imports = [
./desktop/desktop.nix
./terminal/terminal.nix
# ./terminal/terminal.nix
];
}
+1 -11
View File
@@ -22,13 +22,6 @@ in {
Enables Illogical-impulse by end4.
'';
};
simpleStarship = mkOption {
type = types.bool;
default = false;
description = ''
Use a simplified starship.
'';
};
};
};
config = mkIf cfg.enable {
@@ -48,10 +41,7 @@ in {
".config/wlogout".source = builtins.path {path = ../../.config/wlogout;};
".config/Kvantum".source = builtins.path {path = ../../.config/Kvantum;};
".config/xdg-desktop-portal".source = builtins.path {path = ../../.config/xdg-desktop-portal;};
# ".config/starship.toml".source = builtins.path {path = ../../.config/starship.toml;};
".config/starship.toml" = mkIf (!cfg.simpleStarship) {
source = builtins.path {path = ../../.config/starship.toml;};
};
".config/starship.toml".source = builtins.path {path = ../../.config/starship.toml;};
};
home.packages =
import ../packages.nix {inherit pkgs;}