Compare commits

...

2 Commits

2 changed files with 5 additions and 5 deletions

View File

@ -31,7 +31,6 @@ in {
wl-clipboard wl-clipboard
grim grim
slurp slurp
light
imv imv
kanshi kanshi
kitty kitty
@ -128,7 +127,6 @@ in {
xdg.portal = { xdg.portal = {
enable = true; enable = true;
gtkUsePortal = true; extraPortals = with pkgs; [ xdg-desktop-portal-wlr ];
extraPortals = with pkgs; [ xdg-desktop-portal-wlr xdg-desktop-portal-gtk ];
}; };
} }

View File

@ -7,8 +7,10 @@
description = "Upgrade Doom Emacs"; description = "Upgrade Doom Emacs";
wantedBy = [ "default.target" ]; wantedBy = [ "default.target" ];
path = with pkgs; [ bash emacsPgtkGcc git coreutils ]; path = with pkgs; [ bash emacsPgtkGcc git coreutils ];
script = script = ''
"${pkgs.bash}/bin/bash -c '/home/coolneng/.emacs.d/bin/doom -y upgrade'"; ${pkgs.bash}/bin/bash -c "/home/coolneng/.emacs.d/bin/doom -y upgrade"
${pkgs.bash}/bin/bash -c "/home/coolneng/.emacs.d/bin/doom sync"
'';
serviceConfig = { Type = "oneshot"; }; serviceConfig = { Type = "oneshot"; };
}; };