nixos/hosts/vm/livre/default.nix

23 lines
307 B
Nix

{ ... }:
{
imports = [
./hardware-configuration.nix
./stirling.nix
];
networking.hostName = "livre";
boot.loader.grub.devices = [ "/dev/sda" ];
crans = {
enable = true;
networking = {
id = "40";
srvNat.enable = true;
};
};
system.stateVersion = "24.11";
}