nixos/hosts/vm/apprentix/default.nix

21 lines
289 B
Nix

{ ... }:
{
imports = [
./hardware-configuration.nix
];
boot.loader.grub.devices = [ "/dev/sda" ];
networking.hostName = "apprentix";
security.sudo.extraRules = [
{
groups = [ "_user" ];
commands = [ "ALL" ];
}
];
system.stateVersion = "24.11";
}