hosts/hina: init

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2023-08-16 13:44:42 +05:30
parent e281e912d8
commit d4554d43ae
11 changed files with 167 additions and 8 deletions

22
hosts/hina/default.nix Normal file
View File

@@ -0,0 +1,22 @@
{ config, pkgs, lib', ... }:
{
imports = [
./networking.nix
./hardware.nix
./boot.nix
./services.nix
];
time.timeZone = "Asia/Kolkata";
users.users.spin = {
isNormalUser = true;
shell = pkgs.zsh;
home = "/home/spin";
extraGroups = [ "wheel" ];
openssh.authorizedKeys.keys = lib'.network.commonSSHKeys;
};
programs.zsh.enable = true;
system.stateVersion = "21.11";
}