Files
nixconfig/modules/nixos/gui/greet/default.nix
soraefir c2cd4e42c1 fixes
2026-06-05 04:27:45 +02:00

20 lines
414 B
Nix

{ lib, config, pkgs, ... }: {
config = lib.mkIf (config.syscfg.make.gui) {
services.greetd = {
enable = true;
settings = rec {
initial_session = {
command = "start-hyprland";
user = "${config.syscfg.defaultUser}";
};
default_session = initial_session;
};
};
environment.etc."greetd/environments".text = ''
Hyprland
'';
};
}