system/services/greetd: switch to hyprland as compositor (thanks jacekpoz)

This commit is contained in:
Anthony Rodriguez 2024-12-13 14:54:09 +01:00
parent d185864012
commit 04914eab73
Signed by: nezia
GPG key ID: EE3BE97C040A86CE

View file

@ -1,82 +1,45 @@
{
inputs,
config,
lib,
lib',
pkgs,
...
}: let
inherit (lib) getExe evalModules;
inherit (lib') blurImage;
inherit (inputs) niri;
in {
services.greetd = let
home-config = config.home-manager.users.nezia;
# huge thanks to https://github.com/sodiboo/system/blob/262e7e80ac9ae0511f8565713feaa8315d084025/login.mod.nix#L22-L67
# this is needed because we are also importing the default settings
niri-cfg-modules = evalModules {
modules = [
niri.lib.internal.settings-module
(let
cfg = home-config.programs.niri.settings;
in {
programs.niri.settings = {
inherit (cfg) input outputs layout;
hotkey-overlay.skip-at-startup = true;
# causes a deprecation warning otherwise
cursor = builtins.removeAttrs cfg.cursor ["hide-on-key-press"];
}:
# thanks https://git.jacekpoz.pl/poz/niksos/src/commit/f8d5e7ccd9c769f7c0b564f10dff419285e75248/modules/services/greetd.nix
let
inherit (lib) getExe getExe' concatStringsSep;
inherit (inputs.hyprland.packages.${pkgs.stdenv.system}) hyprland;
window-rules = [
{
draw-border-with-background = false;
clip-to-geometry = true;
geometry-corner-radius = {
top-left = 8.0;
top-right = 8.0;
bottom-left = 8.0;
bottom-right = 8.0;
};
hyprctl = getExe' hyprland "hyprctl";
Hyprland = getExe' hyprland "Hyprland";
greeter = getExe pkgs.greetd.gtkgreet;
hyprlandConfig = pkgs.writeText "greetd-hyprland-config" ''
misc {
force_default_wallpaper=0
focus_on_activate=1
}
];
};
})
];
};
# validates config and creates a derivation
niri-config = niri.lib.internal.validated-config-for pkgs config.programs.niri.package niri-cfg-modules.config.programs.niri.finalConfig;
in {
enable = true;
settings = {
default_session = let
niri = getExe config.programs.niri.package;
regreet = getExe config.programs.regreet.package;
# needed because we need to run niri msg quit inside of niri itself (it needs the socket)
greeterScript = pkgs.writeScript "greeter-script" ''
${regreet} && ${niri} msg action quit --skip-confirmation
animations {
enabled=0
first_launch_animation=0
}
workspace=1,default:true,gapsout:0,gapsin:0,border:false,decorate:false
exec-once=[workspace 1;fullscreen;noanim] ${greeter} -l; ${hyprctl} dispatch exit
exec-once=${hyprctl} dispatch focuswindow ${greeter}
'';
in {
command = "${niri} -c ${niri-config} -- ${greeterScript}";
user = "greeter";
};
};
};
programs.regreet = {
in {
services.greetd = {
enable = true;
settings = {
background = {
path = blurImage pkgs config.theme.wallpaper;
fit = "Fill";
};
GTK = {
application_prefer_dark_theme = true;
default_session = {
command = "${Hyprland} --config ${hyprlandConfig}";
user = "nezia";
};
};
};
security.pam.services = {
login.enableGnomeKeyring = true;
greetd.enableGnomeKeyring = true;
greetd.fprintAuth = false;
};
environment.etc."greetd/environments".text = concatStringsSep "\n" ["Hyprland"];
security.pam.services.greetd.fprintAuth = false;
}