flake.nix: structure overhaul

hosts/dunamis/disko.nix: add tmpfs mount for /tmp (nix builds fail because of noexec on /)
modules/home/desktop/default.nix: remove walker

Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
2025-03-18 02:01:50 +02:00
parent 7b388dc05e
commit ba84325990
3 changed files with 35 additions and 54 deletions

View File

@ -2,6 +2,12 @@
imports = with inputs; [
disko.nixosModules.disko
];
disko.devices.disk.nodev = {
"/tmp" = {
fsType = "tmpfs";
mountOptions = ["rw" "nosuid" "nodev"];
};
};
disko.devices.disk.main = {
type = "disk";
device = "/dev/nvme0n1";