summaryrefslogtreecommitdiff
path: root/hosts/skadhi/default.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2026-09-23 21:08:35 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2026-09-23 21:08:35 +0200
commitae9a80c1f012686c1f65fce7ce76fdd1b77b0b71 (patch)
tree141f738276cf84c6b7e5633c2bd5f2b44e9b0b75 /hosts/skadhi/default.nix
parent6a763272038e637a8a03dd9059d43a1ff44921dd (diff)
downloadnixos-ae9a80c1f012686c1f65fce7ce76fdd1b77b0b71.tar
nixos-ae9a80c1f012686c1f65fce7ce76fdd1b77b0b71.tar.gz
nixos-ae9a80c1f012686c1f65fce7ce76fdd1b77b0b71.tar.bz2
nixos-ae9a80c1f012686c1f65fce7ce76fdd1b77b0b71.tar.xz
nixos-ae9a80c1f012686c1f65fce7ce76fdd1b77b0b71.zip
...
Diffstat (limited to 'hosts/skadhi/default.nix')
-rw-r--r--hosts/skadhi/default.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/hosts/skadhi/default.nix b/hosts/skadhi/default.nix
index 96be2e5b..1f3f5306 100644
--- a/hosts/skadhi/default.nix
+++ b/hosts/skadhi/default.nix
@@ -1,9 +1,8 @@
1{ flake, flakeInputs, pkgs, config, lib, ... }: 1{ flake, flakeInputs, pkgs, config, lib, ... }:
2{ 2{
3 imports = with flake.nixosModules.systemProfiles; [ 3 imports = with flake.nixosModules.systemProfiles; [
4 ./hw.nix ./fs.nix 4 ./hw.nix ./fs.nix ./networking
5 tmpfs-root default-locale openssh niri-unstable networkmanager lanzaboote zswap initrd-all-crypto-modules 5 tmpfs-root default-locale openssh lanzaboote zswap initrd-all-crypto-modules
6 flakeInputs.nixVirt.nixosModules.default
7 ]; 6 ];
8 7
9 config = { 8 config = {
@@ -77,5 +76,11 @@
77 enable = true; 76 enable = true;
78 config.hwaccel = true; 77 config.hwaccel = true;
79 }; 78 };
79
80 environment.persistence."/persistent".timezone = true;
81 time.timeZone = null;
82 systemd.tmpfiles.settings = {
83 "10-localtime"."/etc/localtime".L.argument = "/persistent/etc/localtime";
84 };
80 }; 85 };
81} 86}