diff options
| author | Baitinq <[email protected]> | 2022-07-08 12:29:56 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-07-08 12:29:56 +0200 |
| commit | 2e4dbb8830147a8e5f6c516691b3377da9db7e88 (patch) | |
| tree | a4a3031687a583fa7367bbe3abbce3e20d1f75ce /hosts/home.nix | |
| parent | Misc: Dont pass nur input directly (diff) | |
| download | nixos-config-2e4dbb8830147a8e5f6c516691b3377da9db7e88.tar.gz nixos-config-2e4dbb8830147a8e5f6c516691b3377da9db7e88.tar.bz2 nixos-config-2e4dbb8830147a8e5f6c516691b3377da9db7e88.zip | |
Enable emacs package and service
Diffstat (limited to 'hosts/home.nix')
| -rw-r--r-- | hosts/home.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/hosts/home.nix b/hosts/home.nix index afd1b70..476afb0 100644 --- a/hosts/home.nix +++ b/hosts/home.nix @@ -69,6 +69,11 @@ in maxCacheTtl = 86400; #24h maxCacheTtlSsh = 86400; }; + + emacs = { + enable = true; + startWithUserSession = true; + }; }; programs = { @@ -82,6 +87,8 @@ in }; }; + emacs.enable = true; + firefox = { enable = true; extensions = with pkgs.nur.repos.rycee.firefox-addons; [ |