Nix configurations for my personal machines (Linux & macOS)

plasma: re-enable autologin

ovyerus.com 235c12ab 55a1e136

verified
Changed files
+10 -4
modules
+10 -4
modules/plasma.nix
···
sddm.enable = true;
sddm.wayland.enable = true;
-
# autoLogin = {
-
# enable = true;
-
# user = "ovy";
-
# };
+
autoLogin = {
+
enable = true;
+
user = "ovy";
+
};
};
services.desktopManager.plasma6.enable = true;
···
# environment.sessionVariables."NIXOS_OZONE_WL" = 1;
environment.sessionVariables."MOZ_ENABLE_WAYLAND" = 0;
environment.systemPackages = with pkgs; [adwaita-icon-theme kdePackages.kcalc kdePackages.partitionmanager kdePackages.kcolorchooser];
+
+
# TODO: move
+
boot.plymouth = {
+
enable = true;
+
theme = "breeze";
+
};
};
}