alqueva/hosts/python/users/default.nix

52 lines
1.2 KiB
Nix
Raw Normal View History

{
inputs,
pkgs,
...
}: {
alqueva.users.artur = {
shell = pkgs.amadaluzian-nu;
tmpfiles = {
".config/qutebrowser/config.py" = ./configs/qutebrowser/config.py;
2025-01-08 10:28:34 +00:00
".config/qutebrowser/theme" = ./configs/qutebrowser/theme;
".config/vesktop/themes/theme.user.css" = pkgs.fetchurl {
url = "https://github.com/deathbeam/base16-discord/raw/refs/heads/main/themes/base16-nord.theme.css";
hash = "sha256-LofqgsVl+XKisk/dmb/PpwuLEWdEgchIfIw4xZs6LQw=";
2024-12-16 21:10:12 +00:00
};
".config/vesktop/settings/quickCss.css" = ./configs/vesktop/quickCss.css;
".config/kanshi/" = ./configs/kanshi;
2025-01-08 10:56:55 +00:00
".config/dunst/" = ./configs/dunst;
".config/niri/" = ./configs/niri;
};
packages = builtins.attrValues {
inherit
(pkgs)
wget
vesktop
mpv
imv
amberol
fractal
nicotine-plus
nautilus
2024-11-30 11:43:52 +00:00
librewolf
2024-12-10 15:12:00 +00:00
playerctl
geary
2024-12-11 14:39:19 +00:00
qutebrowser
2025-01-08 10:56:55 +00:00
dunst
2025-01-20 21:16:00 +00:00
gh
rofi-wayland
amadaluzian-foot
;
inherit (inputs.hetch.packages.${pkgs.system}) hetch;
};
groups = [
"wheel"
"video"
"audio"
"networkmanager"
"input"
"libvirtd"
];
};
}