diff options
| -rw-r--r-- | docs/todo.md | 4 | ||||
| -rw-r--r-- | nixos/features/services/extra/greetd.nix | 11 |
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; + }; + }; +} |
