peach: refactor hardwarre

This commit is contained in:
Sean Kovacs 2026-01-29 20:49:07 -05:00
commit 03cfc3ab73
Signed by: sckova
GPG key ID: 00F325187C68651A

View file

@ -22,26 +22,29 @@
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/1fd2c838-5fc7-4d52-ab92-9d9de545021b";
fileSystems = {
"/" = {
label = "nixos";
fsType = "btrfs";
options = [
"subvol=root"
"compress=zstd"
"relatime"
];
};
fileSystems."/home" = {
device = "/dev/disk/by-uuid/1fd2c838-5fc7-4d52-ab92-9d9de545021b";
"/home" = {
label = "nixos";
fsType = "btrfs";
options = [
"subvol=home"
"compress=zstd"
"relatime"
];
};
fileSystems."/nix" = {
device = "/dev/disk/by-uuid/1fd2c838-5fc7-4d52-ab92-9d9de545021b";
"/nix" = {
label = "nixos";
fsType = "btrfs";
options = [
"subvol=nix"
@ -50,18 +53,19 @@
];
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/4039-19F6";
"/boot" = {
label = "efi";
fsType = "vfat";
options = [
"fmask=0022"
"dmask=0022"
];
};
};
swapDevices = [
{
device = "/dev/disk/by-uuid/7abc3359-f379-4f7f-9da1-77a81ba748e4";
label = "swap";
}
];