Compare commits

..

1 commit

Author SHA1 Message Date
Jermeiah S
09ed8c1244
removed need for configuration.nix
keeps things simple
2025-06-14 06:32:00 -04:00
2 changed files with 2 additions and 22 deletions

View file

@ -10,6 +10,7 @@ in
imports = [ imports = [
self.nixosModules.default self.nixosModules.default
"${modulesPath}/virtualisation/lxc-container.nix" "${modulesPath}/virtualisation/lxc-container.nix"
./configuration.nix
]; ];
services = { services = {
tty-ips.enable = true; tty-ips.enable = true;
@ -21,7 +22,7 @@ in
"d0e265fcf663451ae9bc048dc1297749819ce9d48042a986f2866c15a779a074" "d0e265fcf663451ae9bc048dc1297749819ce9d48042a986f2866c15a779a074"
]; ];
}; };
hostName = "tofu"; hostName = "smultiboi";
}; };
environment.systemPackages = [ environment.systemPackages = [
]; ];

View file

@ -1,21 +0,0 @@
{
systemd.network = {
enable = true;
networks."50-eth0" = {
matchConfig.Name = "eth0";
networkConfig = {
DHCP = "ipv4";
IPv6AcceptRA = true;
};
linkConfig.RequiredForOnline = "routable";
};
};
networking = {
dhcpcd.enable = false;
useDHCP = false;
useHostResolvConf = false;
};
}