fix: add locale specificaitons

This commit is contained in:
Nydragon 2024-10-19 01:54:30 +02:00
parent 8f0bdfa26c
commit 6c0b6b4aa7
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
5 changed files with 25 additions and 5 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 774 KiB

View file

@ -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 ];
}

View file

@ -22,11 +22,9 @@
group = "wheel";
};
#: Power Consumption {{{
services.logind = {
powerKey = "hibernate";
};
#: }}}
xdg = {
portal.enable = true;

View file

@ -170,5 +170,5 @@
pop-icon-theme
];
system.stateVersion = "23.11";
system.stateVersion = "24.05";
}

View file

@ -3,5 +3,11 @@ let
locale = "en_GB.UTF-8";
in
{
i18n.defaultLocale = locale;
i18n = {
defaultLocale = locale;
extraLocaleSettings = {
LANGUAGE = locale;
LC_ALL = locale;
};
};
}