major home-manager changes

This commit is contained in:
2021-05-02 09:24:02 +05:30
parent da3ef21ccd
commit 70b18cf4fd
33 changed files with 1115 additions and 37 deletions

15
home/modules/files.nix Normal file
View File

@@ -0,0 +1,15 @@
{config, ...}:
let
home = config.home.homeDirectory;
in {
home = {
file.ncmpcpp = {
source = ../config/ncmpcpp/config;
target = "${home}/.config/ncmpcpp/config";
};
file.mpd = {
source = ../config/mpd/mpd.conf;
target = "${home}/.config/mpd/mpd.conf";
};
};
}