blob: f031a3b01cb44de1099a431193fc89ae24297af8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ config, lib, pkgs, ... }: {
imports = [ ./hardware-configuration.nix ];
# Grub bootloader with zfs support
boot._loader = {
enable = true;
type = "grub";
grub.zfsSupport = true;
};
# Disable suspend
suspend.enable = false;
system.stateVersion = "25.05";
}
|