rename base-image to base

This commit is contained in:
Jermeiah S 2025-06-19 16:54:25 -04:00
parent 92b0df5a3d
commit cebf78694b
No known key found for this signature in database

View file

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