This commit is contained in:
Filippo Berto 2023-01-10 14:20:51 +01:00
parent 20d733e16a
commit d5b262b4fa
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
4 changed files with 46 additions and 12 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, ... }: {
{ pkgs, nixosConfig, ... }: {
home = {
language.base = "it_IT.UTF-8";
keyboard = {
@ -71,7 +71,19 @@
];
};
services = { gnome-keyring.enable = true; };
services = {
gnome-keyring.enable = true;
spotifyd = {
enable = true;
settings = {
global = {
username = "filippoberto95";
password_cmd = "cat ${nixosConfig.age.secrets.spotify_password.path}";
use_keyring = true;
};
};
};
};
xsession = {
enable = true;