summaryrefslogtreecommitdiff
path: root/common/home/services
diff options
context:
space:
mode:
Diffstat (limited to 'common/home/services')
-rw-r--r--common/home/services/gpg-agent/default.nix5
-rw-r--r--common/home/services/hyprpaper/default.nix12
-rw-r--r--common/home/services/syncthing/default.nix4
3 files changed, 21 insertions, 0 deletions
diff --git a/common/home/services/gpg-agent/default.nix b/common/home/services/gpg-agent/default.nix
new file mode 100644
index 0000000..d29f924
--- /dev/null
+++ b/common/home/services/gpg-agent/default.nix
@@ -0,0 +1,5 @@
+{ pkgs, ... }:
+{
+ enable = true;
+ pinentryPackage = pkgs.pinentry-qt;
+}
diff --git a/common/home/services/hyprpaper/default.nix b/common/home/services/hyprpaper/default.nix
new file mode 100644
index 0000000..56a11e1
--- /dev/null
+++ b/common/home/services/hyprpaper/default.nix
@@ -0,0 +1,12 @@
+{ ... }:
+{
+ enable = true;
+ settings = {
+ ipc = "on";
+ splash = false;
+ splash_offset = 2.0;
+
+ preload = [ "~/global/media/photos/wallpapers/gruvbox.png" ];
+ wallpaper = [ ",~/global/media/photos/wallpapers/gruvbox.png" ];
+ };
+}
diff --git a/common/home/services/syncthing/default.nix b/common/home/services/syncthing/default.nix
new file mode 100644
index 0000000..3887830
--- /dev/null
+++ b/common/home/services/syncthing/default.nix
@@ -0,0 +1,4 @@
+{ ... }:
+{
+ enable = true;
+}