Nixos-Configuration/configurations/nixos/link-warden-tofu/default.nix
Jermeiah S 5da8673244
All checks were successful
/ check (push) Successful in 1m2s
/ deploy (push) Has been skipped
removed addresses, now autogatherd
2025-06-23 01:12:31 -04:00

25 lines
369 B
Nix

{
pkgs,
flake,
modulesPath,
config,
...
}:
let
inherit (flake) inputs;
inherit (inputs) self;
in
{
imports = [
self.nixosModules.default
"${modulesPath}/virtualisation/lxc-container.nix"
];
networking = {
hostName = "link-warden-tofu";
};
environment.systemPackages = with pkgs; [
cowsay
];
system.stateVersion = "25.05";
}