Skip to content
Snippets Groups Projects

Nix Version of Muckefuck

Files

{ pkgs
, config
, ...
}:
{
imports = [
./hardware-configuration.nix
../../common/base.nix
];
system.stateVersion = "22.11"; # Did you read the comment?
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "fsmi-muckefuck-test";
}
Loading