hoe manager

This commit is contained in:
martyTF 2025-12-17 15:51:20 +01:00
parent bfbc64b611
commit f266f8a8ee
14 changed files with 154 additions and 29 deletions

View file

@ -2,6 +2,7 @@
config,
lib,
pkgs,
modulesPath,
...
}:
@ -18,6 +19,45 @@
};
};
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
users = {
marty = ./nixos/modules/home.nix;
};
};
# PREVIOUSLY HARDWARE-CONFIGURATION.NIX
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [
"xhci_pci"
"ahci"
"nvme"
"usbhid"
"usb_storage"
"sd_mod"
];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/a804bdf0-194c-4fe4-a451-64620d3d293d";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/44A5-B01F";
fsType = "vfat";
options = [
"fmask=0077"
"dmask=0077"
];
};
fileSystems = {
"/mnt/Data" = {
device = "/dev/disk/by-uuid/20eaea9c-6924-40c6-a784-cd5018d8fabb";