diff options
| author | Preston Pan <ret2pop@gmail.com> | 2025-10-06 16:05:07 -0700 |
|---|---|---|
| committer | Preston Pan <ret2pop@gmail.com> | 2025-10-06 16:05:07 -0700 |
| commit | 841c06b106ad501643c35f48f2ced1c2d6a78641 (patch) | |
| tree | 76e32ab8f43ebd79bce73b9b06b03a0e56d8a3ce /nix/modules/configuration.nix | |
| parent | 8a036cf21982210045685fe748afaf6be5aef042 (diff) | |
working version before flake update
Diffstat (limited to 'nix/modules/configuration.nix')
| -rw-r--r-- | nix/modules/configuration.nix | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/nix/modules/configuration.nix b/nix/modules/configuration.nix index e87f406..749d725 100644 --- a/nix/modules/configuration.nix +++ b/nix/modules/configuration.nix @@ -22,7 +22,6 @@ ./znc.nix ./docker.nix ./impermanence.nix - ./firejail.nix ]; documentation = { @@ -87,7 +86,7 @@ }; loader = { - systemd-boot.enable = lib.mkForce ((! config.monorepo.profiles.grub.enable) || (! config.monorepo.profiles.secureBoot.enable)); + systemd-boot.enable = lib.mkForce ((! config.monorepo.profiles.grub.enable) && (! config.monorepo.profiles.secureBoot.enable)); efi.canTouchEfiVariables = lib.mkForce (! config.monorepo.profiles.grub.enable); }; @@ -189,12 +188,8 @@ }; networking = { - useDHCP = false; - dhcpcd.enable = false; - nameservers = [ - "1.1.1.1" - "8.8.8.8" - ]; + nameservers = [ "8.8.8.8" "1.1.1.1"]; + dhcpcd.enable = (! config.monorepo.profiles.server.enable); networkmanager = { enable = true; wifi.powersave = false; |
