diff --git a/assets/landscape-pink-pastel.jpg b/assets/landscape-pink-pastel.jpg new file mode 100644 index 0000000..a1b1ba8 Binary files /dev/null and b/assets/landscape-pink-pastel.jpg differ diff --git a/home/graphical/swww.nix b/home/graphical/swww.nix index c6ecaa8..a62c866 100644 --- a/home/graphical/swww.nix +++ b/home/graphical/swww.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ self, pkgs, ... }: { systemd.user.services.swww = { Install.WantedBy = [ "graphical-session.target" ]; @@ -13,4 +13,20 @@ Restart = "on-failure"; }; }; + + systemd.user.services.swww-set-background = { + Install.WantedBy = [ "graphical-session.target" ]; + + Unit = { + After = [ "graphical-session-pre.target" ]; + PartOf = [ "graphical-session.target" ]; + }; + + Service = { + Type = "oneshot"; + ExecStart = "${pkgs.swww}/bin/swww img ${self + "/assets/landscape-pink-paskel.jpg"}"; + }; + }; + + home.packages = [ pkgs.swww ]; } diff --git a/hosts/brontes/configuration.nix b/hosts/brontes/configuration.nix index 5ba3138..e68d5cb 100644 --- a/hosts/brontes/configuration.nix +++ b/hosts/brontes/configuration.nix @@ -22,11 +22,9 @@ group = "wheel"; }; - #: Power Consumption {{{ services.logind = { powerKey = "hibernate"; }; - #: }}} xdg = { portal.enable = true; diff --git a/hosts/marr/configuration.nix b/hosts/marr/configuration.nix index 06d9243..2bd257d 100644 --- a/hosts/marr/configuration.nix +++ b/hosts/marr/configuration.nix @@ -170,5 +170,5 @@ pop-icon-theme ]; - system.stateVersion = "23.11"; + system.stateVersion = "24.05"; } diff --git a/modules/locale.nix b/modules/locale.nix index 7c79c85..89d8fe0 100644 --- a/modules/locale.nix +++ b/modules/locale.nix @@ -3,5 +3,11 @@ let locale = "en_GB.UTF-8"; in { - i18n.defaultLocale = locale; + i18n = { + defaultLocale = locale; + extraLocaleSettings = { + LANGUAGE = locale; + LC_ALL = locale; + }; + }; }