diff options
author | Tim Keller <tjkeller.xyz> | 2024-10-02 22:54:57 -0500 |
---|---|---|
committer | Tim Keller <tjkeller.xyz> | 2024-10-02 22:54:57 -0500 |
commit | 2720ea4a2988b449de8aeedb4e173eb1f0900719 (patch) | |
tree | 1948dfb3131aba85c755819d16c8dfbb3019d487 /modules/root/software.nix | |
parent | 9d1b3f23a64506988608143f4bca8ab4c5141d3e (diff) | |
download | nixos-2720ea4a2988b449de8aeedb4e173eb1f0900719.tar.xz nixos-2720ea4a2988b449de8aeedb4e173eb1f0900719.zip |
userDetails added etc
Diffstat (limited to 'modules/root/software.nix')
-rw-r--r-- | modules/root/software.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/root/software.nix b/modules/root/software.nix index c991456..4aa6f64 100644 --- a/modules/root/software.nix +++ b/modules/root/software.nix @@ -80,11 +80,11 @@ ]; # More desktop - programs.dconf.enable = lib.mkIf config.software.desktop.enable true; # For home-manager to configure gtk TODO this should be there instead + programs.dconf.enable = config.software.desktop.enable; # For home-manager to configure gtk TODO this should be there instead # More utilities - programs.zsh.enable = lib.mkIf config.software.utils.enable true; + programs.zsh.enable = config.software.utils.enable; users.defaultUserShell = lib.mkIf config.software.utils.enable pkgs.zsh; - services.openssh.enable = lib.mkIf config.software.utils.enable true; + services.openssh.enable = config.software.utils.enable; }; } |