diff --git a/modules/common/nix.nix b/modules/common/nix.nix index 8465cb8..c178aba 100644 --- a/modules/common/nix.nix +++ b/modules/common/nix.nix @@ -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 = { diff --git a/modules/plymouth.nix b/modules/plymouth.nix index 7eec576..8bc9c63 100644 --- a/modules/plymouth.nix +++ b/modules/plymouth.nix @@ -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"; }; } diff --git a/systems/smolboi/configuration.nix b/systems/smolboi/configuration.nix index 48d2b94..0262861 100644 --- a/systems/smolboi/configuration.nix +++ b/systems/smolboi/configuration.nix @@ -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;