feat(desktop)!: switch to zfs

This commit is contained in:
Moritz Böhme 2023-12-08 19:19:56 +01:00
parent 4f9b3b082a
commit 1b22c1345f
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
6 changed files with 219 additions and 69 deletions

View file

@ -9,6 +9,7 @@
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
./disko.nix
];
my = {
@ -16,6 +17,7 @@
desktop.enable = true;
gaming.enable = true;
personal.enable = true;
impermanence.enable = true;
};
programs.hyprland = {
nvidiaSupport = true;
@ -52,17 +54,8 @@
# BOOT
supportedFilesystems = [ "btrfs" "ntfs" ];
loader = {
grub = {
enable = true;
device = "nodev";
efiSupport = true;
useOSProber = true;
};
efi.canTouchEfiVariables = true;
};
supportedFilesystems = [ "zfs" "btrfs" "ntfs" ];
loader.systemd-boot.enable = true;
kernelModules = [ "lm92" "drivetemp" ];
};