grimm-nixos-laptop/modules/users.nix

48 lines
714 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";
2024-04-26 10:25:17 +02:00
extraGroups = [
"networkmanager"
"kvm"
"wheel"
"input"
"video"
"lp"
"scanner"
"libvirt"
"libvirt-qemu"
"libvirtd"
"pipewire"
"gamemode"
"i2c"
];
syncPaths = [
{ remote = "3d"; }
{ remote = "Pictures"; }
{ remote = "Documents"; }
{ remote = "Videos"; }
];
2023-11-28 23:24:43 +01:00
packages = with pkgs; [
2024-05-06 23:22:32 +02:00
jetbrains.clion
jetbrains.idea-community
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
];
};
}