made tty-ip enabled by default

This commit is contained in:
Jermeiah S 2025-06-20 13:53:04 -04:00
parent 7b7bcac73a
commit 7e7384464a
No known key found for this signature in database
6 changed files with 27 additions and 9 deletions

View file

@ -0,0 +1,26 @@
{
flake,
modulesPath,
config,
...
}:
let
inherit (flake) inputs;
inherit (inputs) self;
in
{
imports = [
self.nixosModules.default
"${modulesPath}/virtualisation/lxc-container.nix"
];
deploy = {
address = "unknown.local";
};
networking = {
hostName = "caddy";
};
environment.systemPackages = [
];
system.stateVersion = "25.05";
}