summaryrefslogtreecommitdiff
path: root/hosts/apocalypse/default.nix
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2025-08-17 11:25:33 +0200
committerJakub Stachurski <j.stachurski@student.utwente.nl>2025-08-17 11:25:33 +0200
commit1be972048dd58218cd689ecb5cac562eb398b751 (patch)
tree203f19ee01ad5fe28f2868e8c1451f9538e4ab12 /hosts/apocalypse/default.nix
parent3cd59d4670711e34a50adea912c3b0894883e490 (diff)
refreshed config
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;