nixos/system/users.nix

28 lines
506 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"
"video"
"gamemode"
"libvirtd"
"podman"
];
# Install some user packages
packages = with pkgs; [ ];
};
}