Nixos-Configuration/configurations/nixos/tofu/configuration.nix
Jermeiah S 906179fbed
file location adjustments
disko may not be required here depending on the fact we are leveraging
lxc containers
2025-06-14 06:01:03 -04:00

20 lines
542 B
Nix

{ config, pkgs, ... }:
{
disko.devices.disk.main.device = "/dev/vda";
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";
}