arrange users marisa:spark and satori:bat

Signed-off-by: natto1784 <natto@weirdnatto.in>
This commit is contained in:
2023-03-08 10:08:50 +05:30
parent 5652340dae
commit f31eb4c876
12 changed files with 90 additions and 47 deletions

View File

@@ -1,4 +1,4 @@
{ config, ... }:
{ config, pkgs, network, ... }:
{
imports = [
./networking.nix
@@ -7,6 +7,14 @@
./services.nix
];
users.users.spark = {
isNormalUser = true;
shell = pkgs.zsh;
home = "/home/spark";
extraGroups = [ "wheel" ];
openssh.authorizedKeys.keys = network.commonSSHKeys;
};
time.timeZone = "Asia/Kolkata";
system.stateVersion = "21.05";
}