Move to Xonsh, add hypr scripts

This commit is contained in:
JuliaLange 2024-01-20 14:03:54 -08:00
parent 7f324958a5
commit ce9124c7ed
13 changed files with 224 additions and 48 deletions

View file

@ -0,0 +1,18 @@
{ config, pkgs, ... }:
{
services.spotifyd.enable = true;
services.spotifyd.settings = {
global = {
username = "me@daltonlange.com";
password = "5ThM^G3!FTfH6rH#cJEx";
backend = "pulseaudio";
device_name = "onizuka";
bitrate = 320;
};
};
home.packages = with pkgs; [
spotify-tui # Spotify TUI player
];
}