keylime: we getting there

This commit is contained in:
41666 2023-12-23 11:33:57 -05:00
parent 6d37fd27fc
commit 0a1d80d7e1
2 changed files with 6 additions and 2 deletions

View file

@ -3,8 +3,10 @@
../../templates/proxmox-lxc.nix
../../server.nix
../../features/podman.nix
../../features/dns-cache.nix
];
networking.hostname = "keylime";
networking.hostName = "keylime";
system.stateVersion = "24.05";
nixpkgs.hostPlatform = "x86_64-linux";
}

View file

@ -4,7 +4,7 @@
../users/noe.nix
];
system.stateVersion = lib.mkDefault "24.05";
system.stateVersion = lib.version;
users.users.root.hashedPassword = "$y$j9T$kWYIRHrwP1uXV.l4vTJ67/$VGkvX09rzebYPWRI5vk0Z/IDo434bBaIqUutWp4l0L2";
users.users.root.openssh.authorizedKeys.keys = import ../users/noe-keys.nix;
@ -14,6 +14,8 @@
git # necessary for bootstrapping
];
networking.nameservers = lib.mkDefault ["1.1.1.1" "1.0.0.1"];
systemd.services."getty@tty1" = {
enable = lib.mkForce true;
wantedBy = [ "getty.target" ];