47 lines
818 B
Nix
47 lines
818 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (import ./hyprland.nix {inherit config lib pkgs;}) hyprConf;
|
|
|
|
cfg = config.roles.desktop;
|
|
|
|
hyprland =
|
|
config
|
|
.home-manager
|
|
.users
|
|
.${cfg.user}
|
|
.wayland
|
|
.windowManager
|
|
.hyprland
|
|
.finalPackage;
|
|
in {
|
|
imports = [
|
|
./astal.nix
|
|
];
|
|
|
|
services = {
|
|
displayManager.sessionPackages = [hyprland];
|
|
|
|
greetd = {
|
|
enable = true;
|
|
settings = {
|
|
default_session = {
|
|
command = "Hyprland --config ${hyprConf}";
|
|
user = "greeter";
|
|
};
|
|
|
|
initial_session = {
|
|
command = "Hyprland";
|
|
user = cfg.user;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
# unlock GPG keyring on login
|
|
services.gnome.gnome-keyring.enable = true;
|
|
security.pam.services.greetd.enableGnomeKeyring = true;
|
|
}
|