feat(ooksdesk): swap ooksdesk to new hardware
This commit is contained in:
parent
b833116942
commit
0c5694c4c0
6 changed files with 23 additions and 23 deletions
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
activeProfiles = ["base" "hyprland" "productivity" "gaming"];
|
||||
|
||||
theme = "minimal";
|
||||
theme.minimal.enable = true;
|
||||
|
||||
home.sessionVariables.HN = "ooksdesk";
|
||||
|
||||
|
|
@ -21,7 +21,5 @@
|
|||
workspace = "1";
|
||||
primary = true;
|
||||
}];
|
||||
|
||||
colorscheme = inputs.nix-colors.colorSchemes.gruvbox-material-dark-soft;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -6,12 +6,17 @@
|
|||
../../profiles
|
||||
];
|
||||
|
||||
activeProfiles = ["base" "nvidia" "mediaServer" "gaming"];
|
||||
activeProfiles = ["base" "gaming"];
|
||||
|
||||
systemModules.user = {
|
||||
ooks.enable = true;
|
||||
shell.fish.enable = true;
|
||||
};
|
||||
|
||||
systemModules.hardware = {
|
||||
cpu.type = "amd";
|
||||
gpu.type = "amd";
|
||||
};
|
||||
|
||||
networking = {
|
||||
hostName = "ooksdesk";
|
||||
|
|
|
|||
|
|
@ -8,39 +8,39 @@
|
|||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "uas" "usb_storage" "sd_mod" ];
|
||||
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
|
||||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ "kvm-intel" ];
|
||||
boot.kernelModules = [ "kvm-amd" ];
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/68e9e662-69af-47cd-85ad-c44025a6d214";
|
||||
{ device = "/dev/disk/by-uuid/629a7421-24a0-45e6-87af-031574d9d46d";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=root" ];
|
||||
};
|
||||
|
||||
boot.initrd.luks.devices."cryptnix".device = "/dev/disk/by-uuid/18ed0a3c-8ae6-42c2-8ae5-f1b07a2649f5";
|
||||
boot.initrd.luks.devices."cryptroot".device = "/dev/disk/by-uuid/b5d09a8b-54a9-4f72-828c-5cceea2ec287";
|
||||
|
||||
fileSystems."/nix" =
|
||||
{ device = "/dev/disk/by-uuid/68e9e662-69af-47cd-85ad-c44025a6d214";
|
||||
{ device = "/dev/disk/by-uuid/629a7421-24a0-45e6-87af-031574d9d46d";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=nix" ];
|
||||
};
|
||||
|
||||
fileSystems."/persist" =
|
||||
{ device = "/dev/disk/by-uuid/68e9e662-69af-47cd-85ad-c44025a6d214";
|
||||
{ device = "/dev/disk/by-uuid/629a7421-24a0-45e6-87af-031574d9d46d";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=persist" ];
|
||||
};
|
||||
|
||||
fileSystems."/swap" =
|
||||
{ device = "/dev/disk/by-uuid/68e9e662-69af-47cd-85ad-c44025a6d214";
|
||||
{ device = "/dev/disk/by-uuid/629a7421-24a0-45e6-87af-031574d9d46d";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=swap" ];
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-uuid/6575-A86A";
|
||||
{ device = "/dev/disk/by-uuid/1D01-7040";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
|
|
@ -51,9 +51,8 @@
|
|||
# still possible to use this option, but it's recommended to use it in conjunction
|
||||
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
||||
networking.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.enp2s0.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.enp8s0.useDHCP = lib.mkDefault true;
|
||||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -8,13 +8,12 @@
|
|||
./programs
|
||||
./user
|
||||
./displayManager
|
||||
./networking.nix
|
||||
./locale.nix
|
||||
./virtualisation.nix
|
||||
./pipewire.nix
|
||||
./security.nix
|
||||
./networking
|
||||
./locale
|
||||
./virtualisation
|
||||
./security
|
||||
./services
|
||||
./ssh.nix
|
||||
./audio
|
||||
];
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ in
|
|||
vulkan-tools
|
||||
vulkan-loader
|
||||
vulkan-extension-layer
|
||||
vulkan-validation-layer
|
||||
vulkan-validation-layers
|
||||
amdvlk
|
||||
mesa
|
||||
];
|
||||
|
|
|
|||
|
|
@ -30,7 +30,6 @@ in
|
|||
bootloader.systemd.enable = true;
|
||||
programs.gnomeServices.enable = true;
|
||||
displayManager.tuigreet.enable = true;
|
||||
openssh.enable = true;
|
||||
hardware.ssd.enable = true;
|
||||
services.system76Scheduler.enable = true;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue