autologin
This commit is contained in:
parent
ce98d6ad2a
commit
65a12790dd
3 changed files with 12 additions and 10 deletions
|
@ -5,10 +5,8 @@
|
|||
clean.enable = true;
|
||||
clean.extraArgs = "--keep-since 7d";
|
||||
};
|
||||
nix = {
|
||||
settings = {
|
||||
experimental-features = [ "nix-command" "flakes" ];
|
||||
};
|
||||
nix = {
|
||||
settings = { experimental-features = [ "nix-command" "flakes" ]; };
|
||||
optimise.automatic = true;
|
||||
};
|
||||
system.autoUpgrade = {
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
{ pkgs, lib, ... }: {
|
||||
boot.plymouth = {
|
||||
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";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, lib, pkgs, sops, ... }:
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [ # Include the results of the hardware scan.
|
||||
|
@ -58,10 +58,13 @@
|
|||
|
||||
services = {
|
||||
ratbagd.enable = true;
|
||||
displayManager.sddm = {
|
||||
enable = true;
|
||||
autoNumlock = true;
|
||||
wayland.enable = true;
|
||||
displayManager = {
|
||||
autoLogin.user = "cdombroski";
|
||||
sddm = {
|
||||
enable = true;
|
||||
autoNumlock = true;
|
||||
wayland.enable = true;
|
||||
};
|
||||
};
|
||||
desktopManager.plasma6.enable = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue