21 lines
238 B
Nix
21 lines
238 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../common/global
|
|
../common/users/dwessels
|
|
|
|
];
|
|
|
|
networking = {
|
|
hostName = "raidy";
|
|
useDHCP = true;
|
|
};
|
|
|
|
system.stateVersion = "22.11";
|
|
|
|
}
|