grimm-nixos-laptop/users.nix

45 lines
814 B
Nix
Raw Normal View History

2024-05-07 23:31:41 +02:00
{
lib,
config,
pkgs,
...
}:
{
2023-11-28 23:24:43 +01:00
users.users.grimmauld = {
isNormalUser = true;
2024-04-18 21:16:40 +02:00
# shell = pkgs.xonsh;
2023-11-28 23:24:43 +01:00
description = "grimmauld";
extraGroups = lib.intersectLists (lib.attrNames config.users.groups) [
2024-04-26 10:25:17 +02:00
"networkmanager"
"kvm"
"wheel"
"input"
"video"
"lp"
"scanner"
"libvirt"
"libvirt-qemu"
"libvirtd"
"pipewire"
"gamemode"
"i2c"
]; # only add to groups that actually exist on this system
syncPaths = [
{ remote = "3d"; }
{ remote = "Pictures"; }
{ remote = "Documents"; }
{ remote = "Videos"; }
];
packages = with pkgs; lib.optionals config.grimmShared.graphical [
2023-11-28 23:24:43 +01:00
webcord
2024-03-02 23:15:51 +01:00
discord
2024-04-21 16:02:55 +02:00
obs-studio
element-desktop
2023-11-28 23:24:43 +01:00
ghidra
# rmview
2023-11-28 23:24:43 +01:00
];
};
}