16 lines
304 B
Nix
16 lines
304 B
Nix
# NixOps configuration for doilidh
|
|
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [../../networks/pi3B_rack.nix];
|
|
|
|
networking.hostName = "doilidh"; # Define your hostname.
|
|
|
|
environment.systemPackages = with pkgs; [];
|
|
|
|
system.stateVersion = "22.05"; # The version of NixOS originally installed
|
|
}
|