mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 08:33:55 -05:00
greetd: add options for autologin
This commit is contained in:
parent
25bafd695a
commit
8e8f300246
|
@ -13,6 +13,16 @@
|
||||||
default = inputs.hyprland.packages.${pkgs.system}.hyprland + "/bin/Hyprland";
|
default = inputs.hyprland.packages.${pkgs.system}.hyprland + "/bin/Hyprland";
|
||||||
type = lib.types.str;
|
type = lib.types.str;
|
||||||
};
|
};
|
||||||
|
alyraffauf.desktop.greetd.autologin.enable = lib.mkOption {
|
||||||
|
description = "Whether to enable autologin.";
|
||||||
|
default = false;
|
||||||
|
type = lib.types.bool;
|
||||||
|
};
|
||||||
|
alyraffauf.desktop.greetd.autologin.user = lib.mkOption {
|
||||||
|
description = "User to autologin.";
|
||||||
|
default = "aly";
|
||||||
|
type = lib.types.str;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkIf config.alyraffauf.desktop.greetd.enable {
|
config = lib.mkIf config.alyraffauf.desktop.greetd.enable {
|
||||||
|
@ -23,6 +33,13 @@
|
||||||
default_session = {
|
default_session = {
|
||||||
command = lib.mkDefault "${pkgs.greetd.tuigreet}/bin/tuigreet --asterisks -g 'Welcome to NixOS ${config.system.nixos.release}' --time --remember --cmd ${config.alyraffauf.desktop.greetd.session}";
|
command = lib.mkDefault "${pkgs.greetd.tuigreet}/bin/tuigreet --asterisks -g 'Welcome to NixOS ${config.system.nixos.release}' --time --remember --cmd ${config.alyraffauf.desktop.greetd.session}";
|
||||||
};
|
};
|
||||||
|
initial_session =
|
||||||
|
if config.alyraffauf.desktop.greetd.autologin.enable
|
||||||
|
then {
|
||||||
|
command = config.alyraffauf.desktop.greetd.session;
|
||||||
|
user = config.alyraffauf.desktop.greetd.autologin.user;
|
||||||
|
}
|
||||||
|
else {};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue