Nixos-Configuration/configurations/nixos/link-warden-tofu/default.nix
Jermeiah S f5ac9a4866
All checks were successful
/ check (push) Successful in 53s
/ deploy (push) Successful in 1m36s
added cowsay [deploy]
opend firewall across bored will fix later
2025-06-22 18:51:21 -04:00

28 lines
441 B
Nix

{
pkgs,
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 = with pkgs; [
cowsay
];
system.stateVersion = "25.05";
}