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