nixos-configs/modules/desktop/display-manager/default.nix

48 lines
818 B
Nix
Raw Normal View History

2023-11-22 15:33:16 -05:00
{
config,
2023-11-22 15:33:16 -05:00
lib,
pkgs,
...
2024-01-22 11:09:37 -05:00
}: let
inherit (import ./hyprland.nix {inherit config lib pkgs;}) hyprConf;
cfg = config.roles.desktop;
2024-06-24 12:30:49 -04:00
hyprland =
config
.home-manager
.users
.${cfg.user}
2024-06-24 12:30:49 -04:00
.wayland
.windowManager
.hyprland
.finalPackage;
2023-10-19 17:05:13 -04:00
in {
imports = [
./astal.nix
];
2023-10-19 17:05:13 -04:00
services = {
displayManager.sessionPackages = [hyprland];
greetd = {
enable = true;
settings = {
default_session = {
command = "Hyprland --config ${hyprConf}";
user = "greeter";
};
initial_session = {
command = "Hyprland";
user = cfg.user;
};
2023-10-19 17:05:13 -04:00
};
};
};
# unlock GPG keyring on login
services.gnome.gnome-keyring.enable = true;
security.pam.services.greetd.enableGnomeKeyring = true;
}