53 lines
899 B
Nix
53 lines
899 B
Nix
{ lib, config, pkgs, stable, ... }: {
|
|
users.users.grimmauld = {
|
|
isNormalUser = true;
|
|
# shell = pkgs.xonsh;
|
|
description = "grimmauld";
|
|
extraGroups = [
|
|
"networkmanager"
|
|
"kvm"
|
|
"wheel"
|
|
"input"
|
|
"video"
|
|
"lp"
|
|
"scanner"
|
|
"libvirt"
|
|
"libvirt-qemu"
|
|
"libvirtd"
|
|
"pipewire"
|
|
"gamemode"
|
|
"i2c"
|
|
];
|
|
|
|
syncPaths = [
|
|
{ remote = "3d"; }
|
|
{ remote = "Pictures"; }
|
|
{ remote = "Documents"; }
|
|
{ remote = "Videos"; }
|
|
];
|
|
|
|
packages = with pkgs; [
|
|
geany
|
|
webcord
|
|
discord
|
|
obs-studio
|
|
kwrited
|
|
element-desktop
|
|
ghidra
|
|
kcalc
|
|
rmview
|
|
krita
|
|
weasis
|
|
kicad
|
|
prusa-slicer
|
|
freecad
|
|
openscad
|
|
vlc
|
|
stable.jetbrains.clion
|
|
jetbrains.idea-community
|
|
jetbrains.pycharm-community
|
|
blender
|
|
];
|
|
};
|
|
}
|