Fun artemision changes

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
2024-03-28 02:39:29 -04:00
committed by Alice Huston
parent 6a419c3143
commit 97337d0714
8 changed files with 114 additions and 6 deletions

View File

@ -1,10 +1,11 @@
{ pkgs, ... }:
{ config, pkgs, ... }:
{
imports = [
../configuration.nix
../programs.nix
./programs.nix
./desktop.nix
./wifi.nix
];
time.timeZone = "America/New_York";
@ -55,5 +56,27 @@
services.fprintd.enable = false;
services.spotifyd = {
enable = true;
settings = {
global = {
username = "snowinginwonderland@gmail.com";
password_cmd = "cat ${config.sops.secrets."apps/spotify".path}";
};
};
#systemd.services.spotifyd.serviceConfig = systemd.services.spotifyd.
};
system.stateVersion = "24.05";
sops = {
defaultSopsFile = ./secrets.yaml;
secrets = {
"apps/spotify" = {
group = "audio";
restartUnits = [ "spotifyd.service" ];
mode = "0440";
};
};
};
}