Files
nixos-configs/hosts/raidy/default.nix
2025-12-31 12:01:37 +01:00

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";
}