Nixos-Configuration/configurations/nixos/tofu/configuration.nix
Jermeiah S dc93ae7c0c
migrate disko
not currently used due to lxc assumption
2025-06-14 06:13:43 -04:00

19 lines
495 B
Nix

{ 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";
}