Nixos-Configuration/configurations/nixos/base-tofu/default.nix
Jermeiah S 7dde5410e4
All checks were successful
/ check (push) Successful in 1m23s
/ deploy (push) Has been skipped
chore: cleanup redundant module declarations
2025-07-01 17:52:26 -04:00

25 lines
346 B
Nix

{
flake,
config,
...
}:
let
inherit (flake) inputs;
inherit (inputs) self;
in
{
imports = [
self.nixosModules.default
];
services.yggdrasil.persistentKeys = false;
deploy = {
enable = false;
};
networking = {
hostName = "base-tofu";
};
environment.systemPackages = [
];
system.stateVersion = "25.05";
}