diff options
Diffstat (limited to 'nixos/.flake/home/services')
-rw-r--r-- | nixos/.flake/home/services/core.nix | 3 | ||||
-rw-r--r-- | nixos/.flake/home/services/emacs.nix | 9 | ||||
-rw-r--r-- | nixos/.flake/home/services/mako.nix | 8 |
3 files changed, 19 insertions, 1 deletions
diff --git a/nixos/.flake/home/services/core.nix b/nixos/.flake/home/services/core.nix index 132e3e6..a9380a6 100644 --- a/nixos/.flake/home/services/core.nix +++ b/nixos/.flake/home/services/core.nix @@ -2,12 +2,13 @@ { imports = [ + ./emacs.nix + ./mako.nix ./mpd.nix ./syncthing.nix ]; home.packages = with pkgs; [ - mako # TODO mpdscribble ]; } diff --git a/nixos/.flake/home/services/emacs.nix b/nixos/.flake/home/services/emacs.nix new file mode 100644 index 0000000..867ef0b --- /dev/null +++ b/nixos/.flake/home/services/emacs.nix @@ -0,0 +1,9 @@ +{ config, pkgs, ... }: + +{ + services.emacs = { + enable = true; + client.enable = true; + socketActivation.enable = true; + }; +} diff --git a/nixos/.flake/home/services/mako.nix b/nixos/.flake/home/services/mako.nix new file mode 100644 index 0000000..94348e3 --- /dev/null +++ b/nixos/.flake/home/services/mako.nix @@ -0,0 +1,8 @@ +{ config, pkgs, ... }: + +{ + services.mako = { + enable = true; + backgroundColor = "#ece0c9ff"; + }; +} |