summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2024-02-08 16:24:05 -0500
committerseth <[email protected]>2024-02-08 16:24:05 -0500
commit7745460ad12d7868535a5e19af3345c3f3d96782 (patch)
tree3e8adecdc7748c4bd6d2db357fb8de31fefd9586
parentb96cbcb39701cfc1522d32214e47bcc5d2389e3d (diff)
atlas: don't needlessly disable options specifically
-rw-r--r--systems/atlas/default.nix15
1 files changed, 5 insertions, 10 deletions
diff --git a/systems/atlas/default.nix b/systems/atlas/default.nix
index 7132bbd..f403397 100644
--- a/systems/atlas/default.nix
+++ b/systems/atlas/default.nix
@@ -8,23 +8,18 @@
];
archetypes.server.enable = true;
+ base.networking.enable = false;
boot = {
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;
};
- networking = {
- domain = "mydadleft.me";
- networkmanager.enable = false;
- };
+ networking.domain = "mydadleft.me";
- services = {
- resolved.enable = false;
- # not sure why this fails...
- # context: https://discourse.nixos.org/t/logrotate-config-fails-due-to-missing-group-30000/28501
- logrotate.checkConfig = false;
- };
+ # not sure why this fails...
+ # context: https://discourse.nixos.org/t/logrotate-config-fails-due-to-missing-group-30000/28501
+ services.logrotate.checkConfig = false;
system.stateVersion = "23.05";