Nixos-Configuration/configurations/nixos/base/default.nix
2025-06-19 18:27:38 -04:00

30 lines
459 B
Nix

{
flake,
modulesPath,
config,
...
}:
let
inherit (flake) inputs;
inherit (inputs) self;
in
{
imports = [
self.nixosModules.default
# "${modulesPath}/virtualisation/lxc-container.nix"
];
services.yggdrasil.persistentKeys = false;
deploy = {
enable = false;
};
services = {
tty-ips.enable = true;
};
networking = {
hostName = "base";
};
environment.systemPackages = [
];
system.stateVersion = "25.05";
}