21 lines
403 B
Nix
21 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
|
|
'';
|
|
};
|
|
}
|
|
|