diff options
author | Franck Cuny <franck@fcuny.net> | 2022-02-10 08:43:57 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-02-10 08:43:57 -0800 |
commit | e3dbbcc18c3c14d1eed79b9c05111306a55865ab (patch) | |
tree | e7d7aa19ac0328ef78de309f8e93c397deef4374 /users | |
parent | home-manager: fix typo for polybar (diff) | |
download | world-e3dbbcc18c3c14d1eed79b9c05111306a55865ab.tar.gz |
home-manager: mpd and ncmpcpp configuration
Diffstat (limited to 'users')
-rw-r--r-- | users/fcuny/desktop.nix | 1 | ||||
-rw-r--r-- | users/fcuny/media.nix | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/users/fcuny/desktop.nix b/users/fcuny/desktop.nix index 46dd058..d52d596 100644 --- a/users/fcuny/desktop.nix +++ b/users/fcuny/desktop.nix @@ -52,6 +52,7 @@ imports = [ ./common.nix ./i3.nix + ./media.nix ./terminal.nix ]; } diff --git a/users/fcuny/media.nix b/users/fcuny/media.nix new file mode 100644 index 0000000..a2ae03c --- /dev/null +++ b/users/fcuny/media.nix @@ -0,0 +1,10 @@ +{ + home.packages = [ + mpd + mpc + ncmpcpp + ] + + xdg.configFile."mpd/mpd.conf".source = ../../configs/mpd/mpd.conf; + xdg.configFile."ncmpcpp/config".source = ../../configs/ncmpcpp/config; +} |