nixos/system/users.nix
Torjus Håkestad 137fec122b
All checks were successful
pre-commit / pre-commit (push) Successful in 2m10s
Add torjus to input group
2024-03-09 20:31:42 +01:00

21 lines
425 B
Nix

{ pkgs, ... }:
{
programs.zsh.enable = true;
environment.shells = with pkgs; [ zsh ];
# Setup torjus user
users.users.torjus = {
isNormalUser = true;
initialPassword = "password";
linger = true;
home = "/home/torjus";
description = "Torjus";
shell = pkgs.zsh;
extraGroups = [ "wheel" "input" "networkmanager" ];
# Install some user packages
packages = with pkgs; [
];
};
}