grimm-nixos-laptop/modules/users.nix

44 lines
743 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; [
stable.jetbrains.clion
jetbrains.idea-community
webcord
discord
obs-studio
element-desktop
ghidra
kcalc
rmview
arena
];
};
}