Compare commits

...

3 Commits

Author SHA1 Message Date
coolneng ff60c7ecb1
Remove redundant GTK_THEME variable declaration 2022-06-21 22:59:24 +02:00
coolneng 28876dd62d
Adapt doom-upgrade and doom-purge to upstream 2022-06-21 22:58:36 +02:00
coolneng 64c42b5938 flake.lock: Update
Flake lock file updates:

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/e0a42267f73ea52adc061a64650fddc59906fc99' (2022-06-18)
  → 'github:NixOS/nixpkgs/0d68d7c857fe301d49cdcd56130e0beea4ecd5aa' (2022-06-19)
2022-06-21 22:31:46 +02:00
3 changed files with 5 additions and 6 deletions

View File

@ -38,11 +38,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1655567057,
"narHash": "sha256-Cc5hQSMsTzOHmZnYm8OSJ5RNUp22bd5NADWLHorULWQ=",
"lastModified": 1655624069,
"narHash": "sha256-7g1zwTdp35GMTERnSzZMWJ7PG3QdDE8VOX3WsnOkAtM=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "e0a42267f73ea52adc061a64650fddc59906fc99",
"rev": "0d68d7c857fe301d49cdcd56130e0beea4ecd5aa",
"type": "github"
},
"original": {

View File

@ -42,7 +42,6 @@ with pkgs;
export GRIM_DEFAULT_DIR=/home/coolneng/Photos/Screenshots
export _JAVA_AWT_WM_NONREPARENTING=1
export SDL_VIDEODRIVER=wayland
export GTK_THEME=Adapta-Eta
export XDG_SESSION_TYPE=wayland
export XDG_CURRENT_DESKTOP=sway
export NVIM_LISTEN_ADDRESS=/tmp/nvimsocket

View File

@ -14,7 +14,7 @@ in {
description = "Upgrade Doom Emacs";
path = [ bash emacs-vterm git coreutils ];
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 -! upgrade"
'';
serviceConfig.Type = "oneshot";
startAt = "22:00:00";
@ -26,7 +26,7 @@ in {
description = "Purge Doom Emacs";
path = [ bash emacs-vterm git coreutils ];
script = ''
${pkgs.bash}/bin/bash -c "/home/coolneng/.emacs.d/bin/doom -y purge"
${pkgs.bash}/bin/bash -c "/home/coolneng/.emacs.d/bin/doom -! purge"
'';
serviceConfig.Type = "oneshot";
startAt = "*-*-13 20:00:00";