From 38182e2fa4895b647a4865e65a2e33aa652b9715 Mon Sep 17 00:00:00 2001 From: Daniel Patterson Date: Sat, 4 Dec 2021 15:06:21 +0000 Subject: [PATCH] Set git init branch to main --- user/daniel/home.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/user/daniel/home.nix b/user/daniel/home.nix index 441c8f7..7995f9b 100644 --- a/user/daniel/home.nix +++ b/user/daniel/home.nix @@ -40,6 +40,7 @@ }; packages = with pkgs; [ + _1password discord element-desktop entr @@ -58,6 +59,7 @@ oh-my-zsh pavucontrol python3 + spotify restic rofi starship @@ -82,6 +84,7 @@ userEmail = "me@danielpatterson.dev"; extraConfig = { pull.rebase = true; + init.defaultBranch = "main"; }; }; @@ -108,4 +111,16 @@ }; }; }; + + services = { + spotifyd = { + enable = true; + package = (pkgs.spotifyd.override { withKeyring = true; }); + settings = { + global = { + useKeyring = true; + }; + }; + }; + }; }