This commit is contained in:
alsaiduq-lab 2025-10-26 07:50:12 -06:00
parent 4523c69238
commit 2c169470cd
3 changed files with 74 additions and 0 deletions

15
hosts/modules/greeter.nix Normal file
View file

@ -0,0 +1,15 @@
{
config,
inputs,
...
}: {
imports = [
inputs.dankMaterialShell.nixosModules.greeter
];
programs.dankMaterialShell.greeter = {
enable = true;
compositor.name = "hyprland";
configHome = "/home/${config.theme.user}";
};
}