[nidaros] Update nidaros config

This commit is contained in:
2025-10-14 18:24:56 +02:00
parent 7ef07ac32a
commit 33f99f1406
6 changed files with 10 additions and 7 deletions

View File

@@ -5,9 +5,11 @@
(relativeToBase "modules")
./boot.nix
./hardware.nix
./security
];
# Temp fix to not override password until sops have been implemented
users.mutableUsers = lib.mkForce true;
users.users.${systemConfig.username}.hashedPasswordFile = lib.mkForce null;
}

View File

@@ -17,6 +17,7 @@
"xhci_pci"
"ahci"
"nvme"
"usb_storage"
"usbhid"
"sd_mod"
];
@@ -25,12 +26,12 @@
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/27a8c7df-442b-423e-9e0a-5ed9571a81ed";
device = "/dev/disk/by-uuid/dfade67a-9cbe-4002-990a-2cd22b8e57fa";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/63B5-A86A";
device = "/dev/disk/by-uuid/66F7-BE0A";
fsType = "vfat";
options = [
"fmask=0077"

View File

@@ -4,6 +4,6 @@
imports = with lib.custom; [
(relativeToBase "home-manager")
];
home.stateVersion = "25.05";
# TODO change
programs.git.signing.key = "E4E751ECB68CD7BF";
}