mirror of
https://github.com/bartvdbraak/dotfiles.git
synced 2025-04-27 06:31:20 +00:00
26 lines
453 B
Nix
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";
|
|
}
|