fix: add locale specificaitons
This commit is contained in:
parent
8f0bdfa26c
commit
6c0b6b4aa7
5 changed files with 25 additions and 5 deletions
BIN
assets/landscape-pink-pastel.jpg
Normal file
BIN
assets/landscape-pink-pastel.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 774 KiB |
|
@ -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 ];
|
||||
}
|
||||
|
|
|
@ -22,11 +22,9 @@
|
|||
group = "wheel";
|
||||
};
|
||||
|
||||
#: Power Consumption {{{
|
||||
services.logind = {
|
||||
powerKey = "hibernate";
|
||||
};
|
||||
#: }}}
|
||||
|
||||
xdg = {
|
||||
portal.enable = true;
|
||||
|
|
|
@ -170,5 +170,5 @@
|
|||
pop-icon-theme
|
||||
];
|
||||
|
||||
system.stateVersion = "23.11";
|
||||
system.stateVersion = "24.05";
|
||||
}
|
||||
|
|
|
@ -3,5 +3,11 @@ let
|
|||
locale = "en_GB.UTF-8";
|
||||
in
|
||||
{
|
||||
i18n.defaultLocale = locale;
|
||||
i18n = {
|
||||
defaultLocale = locale;
|
||||
extraLocaleSettings = {
|
||||
LANGUAGE = locale;
|
||||
LC_ALL = locale;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue