20 lines
388 B
Nix
20 lines
388 B
Nix
{pkgs, ...}:
|
|
{
|
|
users.users.grimmauld = {
|
|
isNormalUser = true;
|
|
description = "grimmauld";
|
|
extraGroups = [ "networkmanager" "wheel" "input" "video" "lp" "scanner" ];
|
|
packages = with pkgs; [
|
|
webcord
|
|
heroic
|
|
plasma-browser-integration
|
|
pdfarranger
|
|
kwrited
|
|
gparted
|
|
nmap
|
|
ghidra
|
|
firefox-esr
|
|
spicetify-cli
|
|
];
|
|
};
|
|
}
|