Compare commits

...

2 Commits

2 changed files with 5 additions and 5 deletions

View File

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

View File

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