2024-04-16 11:45:34 +02:00
|
|
|
{ lib, config, pkgs, stable, ... }: {
|
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"
|
|
|
|
];
|
2024-03-26 15:24:07 +01:00
|
|
|
|
|
|
|
syncPaths = [
|
|
|
|
{ remote = "3d"; }
|
|
|
|
{ remote = "Pictures"; }
|
|
|
|
{ remote = "Documents"; }
|
|
|
|
{ remote = "Videos"; }
|
|
|
|
];
|
|
|
|
|
2023-11-28 23:24:43 +01:00
|
|
|
packages = with pkgs; [
|
2024-04-28 19:43:56 +02:00
|
|
|
stable.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
|
2023-12-28 12:39:55 +01:00
|
|
|
element-desktop
|
2023-11-28 23:24:43 +01:00
|
|
|
ghidra
|
2023-12-28 12:39:55 +01:00
|
|
|
kcalc
|
|
|
|
rmview
|
2024-04-27 14:20:48 +02:00
|
|
|
arena
|
2023-11-28 23:24:43 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|