soraefir 0920a1381d
Some checks failed
Nix Build / build-nixos (push) Failing after 29s
More opt
2024-04-14 22:45:21 +02:00

20 lines
403 B
Nix

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