grimm-nixos-laptop/modules/users.nix

31 lines
575 B
Nix
Raw Normal View History

2023-11-29 22:56:30 +01:00
{pkgs, ...}:
2023-11-28 23:24:43 +01:00
{
users.users.grimmauld = {
isNormalUser = true;
description = "grimmauld";
extraGroups = [ "networkmanager" "wheel" "input" "video" "lp" "scanner" "libvirtd" ];
2023-11-28 23:24:43 +01:00
packages = with pkgs; [
webcord
heroic
plasma-browser-integration
pdfarranger
kwrited
gparted
element-desktop
2023-11-28 23:24:43 +01:00
nmap
ghidra
firefox-esr
kcalc
rmview
krita
2023-11-28 23:24:43 +01:00
spicetify-cli
(writeShellScriptBin "connectWG" ''
wg-quick up wg0
'')
(writeShellScriptBin "disconnectWG" ''
wg-quick down wg0
'')
2023-11-28 23:24:43 +01:00
];
};
}