nixos/system/users.nix
Torjus Håkestad 42da556738
All checks were successful
Run nix flake check / flake-check (push) Successful in 2m8s
Periodic flake update / flake-update (push) Successful in 1m20s
Add adb
2024-12-22 03:01:29 +01:00

30 lines
553 B
Nix

{ pkgs, ... }:
{
programs.zsh.enable = true;
environment.shells = with pkgs; [ zsh ];
programs.adb.enable = true;
# 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"
"adbusers"
];
# Install some user packages
packages = with pkgs; [ ];
};
}