autologin
This commit is contained in:
parent
ce98d6ad2a
commit
65a12790dd
3 changed files with 12 additions and 10 deletions
|
@ -6,9 +6,7 @@
|
||||||
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 = {
|
||||||
|
|
|
@ -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";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue