Compare commits

...

3 commits

Author SHA1 Message Date
Jermeiah S
09ed8c1244
removed need for configuration.nix
keeps things simple
2025-06-14 06:32:00 -04:00
Jermeiah S
c900742f44
minor config cleanup 2025-06-14 06:30:53 -04:00
Jermeiah S
763ee4a89b
hostplatform now set defaul 2025-06-14 06:30:36 -04:00
3 changed files with 16 additions and 20 deletions

View file

@ -1,19 +0,0 @@
{ config, pkgs, ... }:
{
services.tty-ips.enable = true;
networking.yggdrasil = {
enable = true;
AllowedPublicKeys = [
"d0e265fcf663451ae9bc048dc1297749819ce9d48042a986f2866c15a779a074"
];
};
nixpkgs.hostPlatform = "x86_64-linux";
networking.hostName = "smultiboi";
environment.systemPackages = [
# pkgs.otf
];
# Used for backwards compatibility, please read the changelog before changing.
# $ darwin-rebuild changelog
system.stateVersion = "25.05";
}

View file

@ -12,4 +12,19 @@ in
"${modulesPath}/virtualisation/lxc-container.nix"
./configuration.nix
];
services = {
tty-ips.enable = true;
};
networking = {
yggdrasil = {
enable = true;
AllowedPublicKeys = [
"d0e265fcf663451ae9bc048dc1297749819ce9d48042a986f2866c15a779a074"
];
};
hostName = "smultiboi";
};
environment.systemPackages = [
];
system.stateVersion = "25.05";
}

View file

@ -6,7 +6,7 @@
++ [
flake.inputs.disko.nixosModules.default
];
nixpkgs.hostPlatform = "x86_64-linux";
nixpkgs.overlays = [ flake.inputs.self.overlays.default ];
services.tailscale = {
enable = true;