diff options
Diffstat (limited to '')
| -rw-r--r-- | hosts/apocalypse/default.nix (renamed from nixos/hosts/apocalypse/default.nix) | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/nixos/hosts/apocalypse/default.nix b/hosts/apocalypse/default.nix index e57105c..8993dc2 100644 --- a/nixos/hosts/apocalypse/default.nix +++ b/hosts/apocalypse/default.nix @@ -1,12 +1,24 @@ - {pkgs, config, lib, ...}: + {lib, ...}: { imports = [ ./hardware-configuration.nix - ../../common ./nvidia.nix ./backup.nix ./firewall.nix ]; + + ## Addons for this system + addons = { + desktop.hyprland.enable = true; + desktop.xfce.enable = true; + + virtualisation.guest = false; + virtualisation.host = true; + + vpn.mullvad.enable = true; + gpg.enable = true; + }; + boot.loader.grub = { useOSProber = true; device = "nodev"; @@ -18,7 +30,7 @@ }; boot.loader.efi.canTouchEfiVariables = true; boot.initrd.systemd.enable = true; - boot.crashDump.enable = false; + boot.crashDump.enable = true; boot.plymouth = { enable = true; theme = "bgrt"; @@ -47,7 +59,7 @@ programs.nix-ld.enable = true; services.printing.enable = true; - nixpkgs.config.allowUnfree = true; + # nix.config.allowUnfree = true; services.resolved = { @@ -58,7 +70,6 @@ dnsovertls = "opportunistic"; }; - networking.useDHCP = lib.mkDefault true; networking.firewall.checkReversePath = false; |
