Nixos-Configuration/configurations/nixos/link-warden-tofu/default.nix
Jermeiah S a6fe3da7e9
All checks were successful
/ check (push) Successful in 1m3s
/ deploy (push) Has been skipped
fixed deployment for linkwarden is live
2025-06-22 18:39:17 -04:00

26 lines
411 B
Nix

{
flake,
modulesPath,
config,
...
}:
let
inherit (flake) inputs;
inherit (inputs) self;
in
{
imports = [
self.nixosModules.default
"${modulesPath}/virtualisation/lxc-container.nix"
];
deploy = {
address = "200:7e25:554c:6df3:2c5:2de:6f9f:a96d";
};
networking = {
hostName = "link-warden-tofu";
};
environment.systemPackages = [
];
system.stateVersion = "25.05";
}