dotfiles/nixos/modules/users.nix
2025-01-22 11:14:58 +01:00

26 lines
453 B
Nix

{ pkgs, ... }:
{
# Define a user account.
users.users.bart = {
isNormalUser = true;
description = "Bart van der Braak";
extraGroups = [
"networkmanager"
"input"
"wheel"
"video"
"audio"
"tss"
];
shell = pkgs.bash;
packages = with pkgs; [
spotify
discord
vscodium
];
};
# Change runtime directory size
services.logind.extraConfig = "RuntimeDirectorySize=8G";
}