hermes/home: delte .gtkrc-2.0 if present before activation

This commit is contained in:
Payas Relekar 2023-09-14 20:22:36 +05:30
parent 772b819cf3
commit d93b26e7a2

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, lib, ... }:
{
imports = [
@ -9,42 +9,50 @@
./emacs.nix
];
home.packages = with pkgs; [
# learn...things?
# anki
home = {
activation.gtk_2_0 = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
if [ -x "/home/payas/.gtkrc-2.0" ]; then
rm /home/payas/.gtkrc-2.0;
fi
'';
# security
keepassxc # password management
bitwarden # password management
rage # secrets management
packages = with pkgs; [
# learn...things?
# anki
# apps
vlc
strawberry
picard # tag music tracks
firefox-wayland
nicotine-plus
# security
keepassxc # password management
bitwarden # password management
rage # secrets management
# utilities
youtube-dl
qbittorrent
digikam
okular
kcalc
ark # munging archives
unrar # So ark can open .rar files
spectacle
gwenview
kate
# apps
vlc
strawberry
picard # tag music tracks
firefox-wayland
nicotine-plus
libreoffice # thoroughly average grown up stuff
# utilities
youtube-dl
qbittorrent
digikam
okular
kcalc
ark # munging archives
unrar # So ark can open .rar files
spectacle
gwenview
kate
hugo
qpdf
libreoffice # thoroughly average grown up stuff
arianna # epub reader for plasma
kolourpaint # paint for plasma
];
hugo
qpdf
arianna # epub reader for plasma
kolourpaint # paint for plasma
];
};
programs = {
go.enable = true;