marisa: add user bat

Signed-off-by: natto1784 <singh.amneesh1784@gmail.com>
This commit is contained in:
2023-03-08 07:57:01 +05:30
parent a739d6de6d
commit 5652340dae
6 changed files with 28 additions and 21 deletions

View File

@@ -1,14 +1,21 @@
{ config, ... }:
{ config, pkgs, ... }:
{
imports =
[
./networking.nix
./hardware.nix
./boot.nix
./services.nix
./mailserver.nix
];
imports = [
./networking.nix
./hardware.nix
./boot.nix
./services.nix
./mailserver.nix
];
time.timeZone = "Asia/Kolkata";
users.users.bat = {
isNormalUser = true;
shell = pkgs.zsh;
home = "/home/bat";
extraGroups = [ "wheel" ];
};
system.stateVersion = "21.11";
}