diff options
| author | Gregor Kleen <gkleen@yggdrasil.li> | 2026-09-23 16:31:47 +0200 |
|---|---|---|
| committer | Gregor Kleen <gkleen@yggdrasil.li> | 2026-09-23 16:31:47 +0200 |
| commit | 19355581e512d3f1fb15e36675d7f2a0578ca5ea (patch) | |
| tree | 0daa8d9078f8ca3fe051a81e01243afd70f6294e | |
| parent | cc381d5ff0e4ebb8496bc35f2b70661213c2f08c (diff) | |
| download | nixos-19355581e512d3f1fb15e36675d7f2a0578ca5ea.tar nixos-19355581e512d3f1fb15e36675d7f2a0578ca5ea.tar.gz nixos-19355581e512d3f1fb15e36675d7f2a0578ca5ea.tar.bz2 nixos-19355581e512d3f1fb15e36675d7f2a0578ca5ea.tar.xz nixos-19355581e512d3f1fb15e36675d7f2a0578ca5ea.zip | |
...
| -rw-r--r-- | hosts/skadhi/fs.nix | 2 | ||||
| -rw-r--r-- | hosts/skadhi/hw.nix | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/hosts/skadhi/fs.nix b/hosts/skadhi/fs.nix index cbeef6f9..a2a01392 100644 --- a/hosts/skadhi/fs.nix +++ b/hosts/skadhi/fs.nix | |||
| @@ -63,7 +63,7 @@ | |||
| 63 | install -d ${lib.concatMapStringsSep " " (p: "$out/${p}") subvols} | 63 | install -d ${lib.concatMapStringsSep " " (p: "$out/${p}") subvols} |
| 64 | install -m 0700 -d ${lib.concatMapStringsSep " " (p: "$out/${p}") restricted} | 64 | install -m 0700 -d ${lib.concatMapStringsSep " " (p: "$out/${p}") restricted} |
| 65 | '')) | 65 | '')) |
| 66 | ] ++ lib.concatMap (p: ["--subvol" p]) subvols; | 66 | ] ++ lib.concatMap (p: ["--subvol" p]) (subvols ++ restricted); |
| 67 | subvolumes = { | 67 | subvolumes = { |
| 68 | "/persistent".mountpoint = "/persistent"; | 68 | "/persistent".mountpoint = "/persistent"; |
| 69 | "/swap" = { | 69 | "/swap" = { |
diff --git a/hosts/skadhi/hw.nix b/hosts/skadhi/hw.nix index 02fb5c0e..7fc286f4 100644 --- a/hosts/skadhi/hw.nix +++ b/hosts/skadhi/hw.nix | |||
| @@ -1,8 +1,7 @@ | |||
| 1 | { flake, flakeInputs, pkgs, config, lib, ... }: | 1 | { flake, flakeInputs, pkgs, config, lib, ... }: |
| 2 | { | 2 | { |
| 3 | imports = with flake.nixosModules.systemProfiles; [ | 3 | imports = [ |
| 4 | flakeInputs.nixos-hardware.nixosModules.framework-13-7040-amd | 4 | flakeInputs.nixos-hardware.nixosModules.framework-13-7040-amd |
| 5 | disko | ||
| 6 | ]; | 5 | ]; |
| 7 | 6 | ||
| 8 | config = { | 7 | config = { |
