mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
12 lines
264 B
Nix
12 lines
264 B
Nix
{pkgs, config, lib, ...}: let
|
|
inherit (lib.modules) mkForce;
|
|
in {
|
|
programs.regreet = {
|
|
enable = true;
|
|
theme = mkForce config.home-manager.users.kat.gtk.theme;
|
|
};
|
|
stylix.targets.regreet.enable = true;
|
|
services.greetd = {
|
|
enable = true;
|
|
};
|
|
}
|