22 lines
389 B
Nix
22 lines
389 B
Nix
{ config, pkgs, conf, ... }:
|
|
{
|
|
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 = conf.network.commonSSHKeys;
|
|
};
|
|
|
|
system.stateVersion = "21.11";
|
|
}
|