summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-12-23 14:51:50 -0500
committertriethyl <triethylammonium@pm.me>2025-12-23 14:51:50 -0500
commit37c5d5768346b5dfbedcf9c391368844918e6e51 (patch)
tree21193445b9e6df65ab035cf20e69cbf1764dd3e6
parenta7dbcbc0ad70456b962e9a9098183272f6b8fc6f (diff)
nixos: add greetd regreet greeter
-rw-r--r--docs/todo.md4
-rw-r--r--nixos/features/services/extra/greetd.nix11
2 files changed, 15 insertions, 0 deletions
diff --git a/docs/todo.md b/docs/todo.md
index c26c952..e6b5cfa 100644
--- a/docs/todo.md
+++ b/docs/todo.md
@@ -10,6 +10,10 @@
- Make gamedev bundle
- Add keybinds help page to niri
- Add openrgb module for desktop pc
+- Integrate vicinae into niri setup
+- Set niri background to full black and do a screen transition at startup to fade in the wallpaper and bar
+- replace plymouth loading screen
+- replace sddm with greetd
## Eventual
diff --git a/nixos/features/services/extra/greetd.nix b/nixos/features/services/extra/greetd.nix
new file mode 100644
index 0000000..2e61a99
--- /dev/null
+++ b/nixos/features/services/extra/greetd.nix
@@ -0,0 +1,11 @@
+{ config, pkgs, lib, ... }: let
+ cfg = config.features.services.extra.greetd;
+in {
+ options.features.services.extra.greetd.enable = lib.mkEnableOption "greetd";
+ config = lib.mkIf cfg.enable {
+ services.greetd.enable = true;
+ services.regreet = {
+ enable = true;
+ };
+ };
+}