hoe manager
This commit is contained in:
parent
bfbc64b611
commit
f266f8a8ee
14 changed files with 154 additions and 29 deletions
40
marty-pc.nix
40
marty-pc.nix
|
|
@ -2,6 +2,7 @@
|
|||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
modulesPath,
|
||||
...
|
||||
}:
|
||||
|
||||
|
|
@ -17,6 +18,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 = [
|
||||
"nvme"
|
||||
"xhci_pci"
|
||||
"ahci"
|
||||
"usbhid"
|
||||
"usb_storage"
|
||||
"sd_mod"
|
||||
];
|
||||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ "kvm-amd" ];
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-uuid/a26cdc8b-abc9-47cf-ad33-c81e56e56d22";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" = {
|
||||
device = "/dev/disk/by-uuid/C9B2-7254";
|
||||
fsType = "vfat";
|
||||
options = [
|
||||
"fmask=0077"
|
||||
"dmask=0077"
|
||||
];
|
||||
};
|
||||
fileSystems = {
|
||||
"/mnt/SSD" = {
|
||||
device = "/dev/disk/by-uuid/af5282f0-0e02-4532-902f-97509af70d11";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue