9 lines
144 B
Nix
9 lines
144 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
(inputs.import-tree ./services)
|
|
];
|
|
system.stateVersion = "25.11";
|
|
networking.fqdn = "rigel.local";
|
|
}
|