diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-09-18 15:39:36 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-09-18 15:39:36 -0500 |
commit | 67c19fb328784f68d4167f180db94abc55d4c127 (patch) | |
tree | efbb93964381de6f34bbfd95c2dcb2f0af6362fe | |
parent | fa36bcb70c51e7a30e2254db8ec08041b39c34fe (diff) | |
download | nixos-config-67c19fb328784f68d4167f180db94abc55d4c127.tar.gz nixos-config-67c19fb328784f68d4167f180db94abc55d4c127.zip |
Fix previous commit
-rw-r--r-- | hosts/radish/default.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hosts/radish/default.nix b/hosts/radish/default.nix index 095507f..2635501 100644 --- a/hosts/radish/default.nix +++ b/hosts/radish/default.nix @@ -15,10 +15,10 @@ networking.firewall.enable = false; networking.useDHCP = false; xdg = { - autostart.enable = mkDefault false; - icons.enable = mkDefault false; - mime.enable = mkDefault false; - sounds.enable = mkDefault false; + autostart.enable = false; + icons.enable = false; + mime.enable = false; + sounds.enable = false; }; this.buildMachines = ["pinto"]; |