This commit is contained in:
dusk 2022-11-18 00:06:43 +03:00
parent 01f7718001
commit dcf9d08107
Signed by: dusk
GPG Key ID: 1D8F8FAF2294D6EA
4 changed files with 25 additions and 3 deletions

View File

@ -1,5 +1,8 @@
{config, ...}: { {config, ...}: {
home.persistence."${config.system.persistDir}${config.home.homeDirectory}".directories = [".config/chromium"]; home.persistence."${config.system.persistDir}${config.home.homeDirectory}".directories = [
".config/chromium"
".local/share/applications"
];
programs.chromium = { programs.chromium = {
enable = true; enable = true;
commandLineArgs = [ commandLineArgs = [

View File

@ -0,0 +1,16 @@
{
config,
pkgs,
...
}: {
services.spotifyd = {
enable = true;
settings = {
device_name = "nix";
};
};
home.packages = [pkgs.spotify-tui];
home.persistence."${config.system.persistDir}${config.home.homeDirectory}".directories = [
".config/spotify-tui"
];
}

View File

@ -7,6 +7,7 @@
NIXOS_OZONE_WL = "1"; NIXOS_OZONE_WL = "1";
MOZ_ENABLE_WAYLAND = "1"; MOZ_ENABLE_WAYLAND = "1";
XDG_SESSION_TYPE = "wayland"; XDG_SESSION_TYPE = "wayland";
GDK_SCALE = "2";
}; };
xdg.configFile = { xdg.configFile = {
@ -14,6 +15,7 @@
NIXOS_OZONE_WL=1 NIXOS_OZONE_WL=1
MOZ_ENABLE_WAYLAND=1 MOZ_ENABLE_WAYLAND=1
XDG_SESSION_TYPE=wayland XDG_SESSION_TYPE=wayland
GDK_SCALE=2
''; '';
}; };
} }

View File

@ -166,7 +166,7 @@ in {
}; };
settings.iconTheme = { settings.iconTheme = {
name = "Yaru"; name = "Yaru-dark";
package = pkgs.yaru-theme; package = pkgs.yaru-theme;
}; };
@ -190,7 +190,7 @@ in {
iconTheme = config.settings.iconTheme; iconTheme = config.settings.iconTheme;
theme = { theme = {
name = "Yaru-Dark"; name = "Yaru-dark";
package = pkgs.yaru-theme; package = pkgs.yaru-theme;
}; };
}; };
@ -230,6 +230,7 @@ in {
libreoffice-fresh libreoffice-fresh
helvum helvum
nix-output-monitor nix-output-monitor
spotify
]; ];
}; };
programs = { programs = {