Users, add juri and update automatic start version

This commit is contained in:
Julia Lange 2025-03-12 22:30:33 -07:00
parent 5c4a4ef333
commit 7c5bbbe9f4
Signed by: Julia
SSH key fingerprint: SHA256:50XUMcOFYPUs9/1j7p9SPnwASZ7QnxXm7THF7HkbqzQ
4 changed files with 71 additions and 1 deletions

16
hosts/juri/host.nix Normal file
View file

@ -0,0 +1,16 @@
{ config, ... }:
{
imports = [
./hardware.nix
];
system.stateVersion = "24.11";
system.timezone = "America/Los_Angeles";
system.users.bigWheels = [ "pan" ];
shell.enabledShells = [ "fish" ];
shell.defaultShell = "fish";
sshd.enable = true;
}