Added sops support

This commit is contained in:
FredzyW 2024-04-24 14:52:47 +02:00
parent 52dfd1fbdf
commit 2e06ef806d
8 changed files with 114 additions and 4 deletions

View file

@ -7,7 +7,9 @@
size = 18;
} else {
name = "FiraCode Nerd Font";
# size = 18;
size = 24;
# size = 30;
};
shellIntegration = {
enableZshIntegration = true;

View file

@ -1,9 +1,10 @@
{ pkgs, lib, myhostname, ... }:
{ pkgs, lib, myhostname, sops, ... }:
{
services.spotifyd = {
enable = true;
settings = {
username = "fredzyw";
password = sops.secrets.spotify_password;
device_name = myhostname;
};
};