autologin

This commit is contained in:
Chris Dombroski 2024-07-30 09:11:17 -04:00
parent ce98d6ad2a
commit 65a12790dd
3 changed files with 12 additions and 10 deletions

View file

@ -5,10 +5,8 @@
clean.enable = true; clean.enable = true;
clean.extraArgs = "--keep-since 7d"; clean.extraArgs = "--keep-since 7d";
}; };
nix = { nix = {
settings = { settings = { experimental-features = [ "nix-command" "flakes" ]; };
experimental-features = [ "nix-command" "flakes" ];
};
optimise.automatic = true; optimise.automatic = true;
}; };
system.autoUpgrade = { system.autoUpgrade = {

View file

@ -1,7 +1,8 @@
{ pkgs, lib, ... }: { { pkgs, lib, ... }: {
boot.plymouth = { boot.plymouth = {
enable = true; enable = true;
themePackages = with pkgs; [ (adi1090x-plymouth-themes.override { selected_themes = [ "owl" ];}) ]; themePackages = with pkgs;
[ (adi1090x-plymouth-themes.override { selected_themes = [ "owl" ]; }) ];
theme = lib.mkForce "owl"; theme = lib.mkForce "owl";
}; };
} }

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, sops, ... }: { config, pkgs, ... }:
{ {
imports = [ # Include the results of the hardware scan. imports = [ # Include the results of the hardware scan.
@ -58,10 +58,13 @@
services = { services = {
ratbagd.enable = true; ratbagd.enable = true;
displayManager.sddm = { displayManager = {
enable = true; autoLogin.user = "cdombroski";
autoNumlock = true; sddm = {
wayland.enable = true; enable = true;
autoNumlock = true;
wayland.enable = true;
};
}; };
desktopManager.plasma6.enable = true; desktopManager.plasma6.enable = true;