home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 16af81f2d039ae2927b97b4a2259b251db4a4cdc
parent cade89c189993b699cad4443b97c695cd9e91102
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Fri,  2 Oct 2020 17:51:08 +0200

users/vincent: fix emacs-server

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mtasks.org | 78++++++++++++++++++++++++++++++++++++++++--------------------------------------
Musers/modules/services/emacs-server.nix | 4++--
2 files changed, 42 insertions(+), 40 deletions(-)

diff --git a/tasks.org b/tasks.org @@ -17,6 +17,46 @@ I need naruhodo setup on hokkaido as much automated as possible. +** TODO Initial repositories setup + +- NixOS/nixpkgs +- src/home +- src/github.com/tektoncd +- src/github.com/openshift +- … + +Using =mr= for this + +** TODO Manage =~/sync/*= links + +kubeconfig, … + +** TODO Yubikey login/lockout + +** TODO gnome3 modules + +Create a module (like desktop) or part of desktop + +** TODO redhat specifics + +VPN + +** TODO [[git:~/src/home/tasks.org::master@{2020-07-09}::158][Reset systems at boot]] + +- =root= +- =home= + +** TODO Dry-install on old Dell + +Things to test: + +- [ ] Erase your darlings setup ? +- [X] Gnome settings +- [ ] Yubikey + + login/logout + + gpg setup +- [ ] Red Hat VPN connection + ** DONE Initial gnome3 setup CLOSED: [2020-06-29 Mon 18:11] :LOGBOOK: @@ -32,26 +72,12 @@ Currently, hokkaido is setup based on unstable.. should we go back to 20.09 ? Let's try as is, and see if it's a pain in the butt or not -** TODO Initial repositories setup - -- NixOS/nixpkgs -- src/home -- src/github.com/tektoncd -- src/github.com/openshift -- … - -Using =mr= for this - ** DONE Fix emacs server service CLOSED: [2020-10-02 Fri 17:31] :LOGBOOK: - State "DONE" from "TODO" [2020-10-02 Fri 17:31] :END: -** TODO Manage =~/sync/*= links - -kubeconfig, … - ** DONE Add gnome3 extensions CLOSED: [2020-10-02 Fri 12:05] :LOGBOOK: @@ -95,30 +121,6 @@ - State "DONE" from "TODO" [2020-10-01 Thu 18:12] :END: -** TODO gnome3 modules - -Create a module (like desktop) or part of desktop - -** TODO redhat specifics - -VPN - -** TODO [[git:~/src/home/tasks.org::master@{2020-07-09}::158][Reset systems at boot]] - -- =root= -- =home= - -** TODO Dry-install on old Dell - -Things to test: - -- [ ] Erase your darlings setup ? -- [ ] Gnome settings -- [ ] Yubikey - + login/logout - + gpg setup -- [ ] Red Hat VPN connection - * TODO [#B] Create a custom iso for easier install diff --git a/users/modules/services/emacs-server.nix b/users/modules/services/emacs-server.nix @@ -44,8 +44,8 @@ in Service = { ExecStart = - "${cfg.shell} 'exec ${cfg.package}/bin/emacs --fg-daemon=${cfg.name} ${cfg.extraOptions}'"; - ExecStop = "${cfg.package}/bin/emacsclient --eval '(kill-emacs)'"; + "${cfg.shell} 'exec emacs --fg-daemon=${cfg.name} ${cfg.extraOptions}'"; + ExecStop = "${cfg.shell} 'emacsclient --eval '(kill-emacs)''"; Restart = "on-failure"; };