grimm-nixos-laptop/modules/users.nix

34 lines
696 B
Nix
Raw Normal View History

2024-02-02 12:59:59 +01:00
{lib, config, pkgs, ...}: {
2023-11-28 23:24:43 +01:00
users.users.grimmauld = {
isNormalUser = true;
shell = pkgs.xonsh;
2023-11-28 23:24:43 +01:00
description = "grimmauld";
2024-03-24 10:16:04 +01:00
extraGroups = [ "networkmanager" "kvm" "wheel" "input" "video" "lp" "scanner" "libvirt" "libvirt-qemu" "libvirtd" "pipewire" "gamemode" ];
syncPaths = [
{ remote = "3d"; }
{ remote = "Pictures"; }
{ remote = "Documents"; }
{ remote = "Videos"; }
];
2023-11-28 23:24:43 +01:00
packages = with pkgs; [
webcord
2024-03-02 23:15:51 +01:00
discord
2023-11-28 23:24:43 +01:00
kwrited
element-desktop
2023-11-28 23:24:43 +01:00
ghidra
kcalc
rmview
krita
kicad
2023-11-28 23:24:43 +01:00
spicetify-cli
prusa-slicer
freecad
openscad
2024-03-26 14:18:33 +01:00
jetbrains.clion
# blender
2023-11-28 23:24:43 +01:00
];
};
}