nixos/system/users.nix
Torjus Håkestad e1049f0a16
Some checks failed
pre-commit / pre-commit (push) Failing after 23s
pre-commit / pre-commit (pull_request) Failing after 14m39s
Rice laptop
2024-04-21 11:46:33 +02:00

21 lines
433 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" ];
# Install some user packages
packages = with pkgs; [
];
};
}