Compare commits

...

2 Commits

Author SHA1 Message Date
c9b94ed5f0
slab: configure greetd for auto-login 2024-03-20 22:40:18 -04:00
1dd59261c3
Don't explicitly enable greetd on hosts
this fucks with specialisations; Plasma enables greetd and tries to
evaluate the launch command for autologin when it is only set by
hyprland.nix and the Plasma specialisation doesn't define
nixfiles.programs.greetd.settings.command which makes it evaluate as
null
2024-03-20 22:33:49 -04:00
2 changed files with 4 additions and 2 deletions

View File

@ -52,7 +52,6 @@
profile.pc.enable = true;
programs.adb.enable = true;
programs.greetd = {
enable = true;
preset = "tuigreet";
};
programs.unbound.enable = true;

View File

@ -60,11 +60,14 @@
adb.enable = true;
unbound.enable = true;
greetd = {
enable = true;
preset = "tuigreet";
};
};
};
services.greetd.settings.initial_session = {
command = config.nixfiles.programs.greetd.settings.command;
user = "nullbite";
};
networking.hostName = "slab";