21 lines
404 B
Nix
21 lines
404 B
Nix
|
{ self, config, pkgs, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
./hardware-configuration.nix
|
||
|
];
|
||
|
|
||
|
variables.hostName = "fsn1-1";
|
||
|
variables.domain = "mirror.lewd.wtf";
|
||
|
|
||
|
networking.hostName = "${config.variables.hostName}";
|
||
|
networking.domain = "${config.variables.domain}";
|
||
|
|
||
|
boot.loader.grub = {
|
||
|
enable = true;
|
||
|
efiSupport = false;
|
||
|
devices = [ "/dev/sda" ];
|
||
|
};
|
||
|
|
||
|
system.stateVersion = "22.11";
|
||
|
}
|