summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
Diffstat (limited to 'hosts')
-rw-r--r--hosts/skadhi/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/hosts/skadhi/default.nix b/hosts/skadhi/default.nix
index 847f9e8f..96be2e5b 100644
--- a/hosts/skadhi/default.nix
+++ b/hosts/skadhi/default.nix
@@ -2,7 +2,7 @@
2{ 2{
3 imports = with flake.nixosModules.systemProfiles; [ 3 imports = with flake.nixosModules.systemProfiles; [
4 ./hw.nix ./fs.nix 4 ./hw.nix ./fs.nix
5 tmpfs-root default-locale openssh niri-unstable networkmanager lanzaboote zswap 5 tmpfs-root default-locale openssh niri-unstable networkmanager lanzaboote zswap initrd-all-crypto-modules
6 flakeInputs.nixVirt.nixosModules.default 6 flakeInputs.nixVirt.nixosModules.default
7 ]; 7 ];
8 8
@@ -19,7 +19,7 @@
19 }; 19 };
20 }; 20 };
21 21
22 luks.cryptoModules = [ "aegis128" ]; 22 kernelModules = [ "dm-integrity" ];
23 }; 23 };
24 24
25 lanzaboote.configurationLimit = 15; 25 lanzaboote.configurationLimit = 15;
@@ -72,5 +72,10 @@
72 }; 72 };
73 73
74 services.userborn.importLegacyState = false; 74 services.userborn.importLegacyState = false;
75
76 services.kmscon = {
77 enable = true;
78 config.hwaccel = true;
79 };
75 }; 80 };
76} 81}