nixos/hosts/vm/redite/default.nix

23 lines
306 B
Nix

{ ... }:
{
imports = [
./hardware-configuration.nix
./redlib.nix
];
networking.hostName = "redite";
boot.loader.grub.devices = [ "/dev/sda" ];
crans = {
enable = true;
networking = {
id = "39";
srvNat.enable = true;
};
};
system.stateVersion = "23.11";
}