stuff
This commit is contained in:
parent
01f7718001
commit
dcf9d08107
@ -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 = [
|
||||||
|
16
users/modules/spotify/default.nix
Normal file
16
users/modules/spotify/default.nix
Normal 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"
|
||||||
|
];
|
||||||
|
}
|
@ -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
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -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 = {
|
||||||
|
Loading…
Reference in New Issue
Block a user