Add emanote

This commit is contained in:
Fabian Hauser 2024-07-22 20:38:57 +02:00
parent c9a8b5391a
commit 816f8ae9d3
4 changed files with 603 additions and 31 deletions

View file

@ -8,24 +8,25 @@
{
imports = [
./catppuccin.nix
./emanote.nix
./evolution.nix
./firefox.nix
./gpg.nix
./ssh.nix
./catppuccin.nix
./scripts.nix
./webapps.nix
./vim.nix
./git.nix
./waybar.nix
./psql.nix
./mako.nix
./kitty.nix
./shell.nix
./swaylock.nix
./kanshi.nix
./sway.nix
./gammastep.nix
./git.nix
./gpg.nix
./kanshi.nix
./kitty.nix
./mako.nix
./psql.nix
./scripts.nix
./shell.nix
./ssh.nix
./sway.nix
./swaylock.nix
./vim.nix
./waybar.nix
./webapps.nix
];
services = {

View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
{
services.emanote = {
enable = true;
# host = "127.0.0.1"; # default listen address is 127.0.0.1
# port = 8080; # default http port is 7000
notes = [
"/home/fhauser/shares/cloud.qo.is/Notes"
];
# package = emanote.packages.${builtins.currentSystem}.default;
};
}