1
0
Fork 0

Finalize Dimaga's config

This commit is contained in:
Aires 2024-07-01 15:51:05 -04:00
parent c3589b3a73
commit c96a7820bd
2 changed files with 17 additions and 17 deletions

View file

@ -28,17 +28,17 @@ in
apps = {
development.enable = true;
media.enable = true;
office.enable = true;
recording.enable = true;
social.enable = true;
writing.enable = true;
#media.enable = true;
#office.enable = true;
#recording.enable = true;
#social.enable = true;
#writing.enable = true;
};
# Enable Secure Boot support.
bootloader = {
enable = true;
secureboot.enable = true;
#secureboot.enable = true;
tpm2.enable = true;
};
@ -49,11 +49,11 @@ in
gpu = {
intel.enable = true;
nvidia = {
enable = false;
enable = true;
hybrid = {
enable = false;
busIDs.nvidia = "";
busIDs.intel = "";
enable = true;
busIDs.nvidia = "PCI:3:0:0";
busIDs.intel = "PCI:0:2:0";
};
};
};

View file

@ -7,8 +7,8 @@
}:
let
primaryDisk = "/dev/disk/by-id/";
luksDevice = "";
luksPartition = "/dev/disk/by-uuid/dfb4fc8f-e82b-43a1-91c1-a77acb6337cb";
luksDevice = "9fdc521b-a037-4070-af47-f54da03675e4";
standardMountOpts = [
"compress=zstd"
"noatime"
@ -37,27 +37,27 @@ in
fileSystems = {
"/" = {
device = primaryDisk;
device = luksPartition;
fsType = "btrfs";
options = [ "subvol=@" ] ++ standardMountOpts;
};
"/home" = {
device = primaryDisk;
device = luksPartition;
fsType = "btrfs";
options = [ "subvol=@home" ] ++ standardMountOpts;
};
"/nix" = {
device = primaryDisk;
device = luksPartition;
fsType = "btrfs";
options = [ "subvol=@nix" ] ++ standardMountOpts;
};
"/swap" = {
device = primaryDisk;
device = luksPartition;
fsType = "btrfs";
options = [ "subvol=@swap" ];
};
"/boot" = {
device = "/dev/disk/by-uuid/AFCB-D880";
device = "/dev/disk/by-uuid/FC20-D155";
fsType = "vfat";
};
};