Files
dotfiles/home/natto/stuff.nix
2022-11-25 02:26:35 +05:30

28 lines
636 B
Nix

{ config, lib, pkgs, ... }: {
xdg = {
enable = true;
userDirs.enable = true;
};
home = {
sessionVariables = {
LV2_PATH = lib.makeSearchPath "lib/lv2" (with pkgs; [ calf ]);
TERM = "st-24bits";
};
file = with config; {
stalonetray = {
source = ./config/stalonetrayrc;
target = "${home.homeDirectory}/.stalonetrayrc";
};
ncmpcpp = {
source = ./config/ncmpcpp/config;
target = "${xdg.configHome}/ncmpcpp/config";
};
mpv = {
source = ./config/mpv/mpv.conf;
target = "${xdg.configHome}/mpv/mpv.conf";
};
};
};
}