stuff
This commit is contained in:
parent
01f7718001
commit
dcf9d08107
@ -1,5 +1,8 @@
|
||||
{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 = {
|
||||
enable = true;
|
||||
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";
|
||||
MOZ_ENABLE_WAYLAND = "1";
|
||||
XDG_SESSION_TYPE = "wayland";
|
||||
GDK_SCALE = "2";
|
||||
};
|
||||
|
||||
xdg.configFile = {
|
||||
@ -14,6 +15,7 @@
|
||||
NIXOS_OZONE_WL=1
|
||||
MOZ_ENABLE_WAYLAND=1
|
||||
XDG_SESSION_TYPE=wayland
|
||||
GDK_SCALE=2
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
@ -166,7 +166,7 @@ in {
|
||||
};
|
||||
|
||||
settings.iconTheme = {
|
||||
name = "Yaru";
|
||||
name = "Yaru-dark";
|
||||
package = pkgs.yaru-theme;
|
||||
};
|
||||
|
||||
@ -190,7 +190,7 @@ in {
|
||||
iconTheme = config.settings.iconTheme;
|
||||
|
||||
theme = {
|
||||
name = "Yaru-Dark";
|
||||
name = "Yaru-dark";
|
||||
package = pkgs.yaru-theme;
|
||||
};
|
||||
};
|
||||
@ -230,6 +230,7 @@ in {
|
||||
libreoffice-fresh
|
||||
helvum
|
||||
nix-output-monitor
|
||||
spotify
|
||||
];
|
||||
};
|
||||
programs = {
|
||||
|
Loading…
Reference in New Issue
Block a user