also wrote some doucumentation about quadlets, nothing too comprehesive though as the wrapper might get removed later
17 lines
323 B
Nix
17 lines
323 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
userName,
|
|
...
|
|
}: {
|
|
imports = [ ];
|
|
|
|
# Enable flakes for NixOS
|
|
nix.settings.experimental-features = ["nix-command" "flakes"];
|
|
|
|
# Custom kernel/boot stuff
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
}
|