home/natto: email config and misc shit

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2022-11-10 19:17:20 +05:30
parent f9723b1f11
commit 67f879cfc1
10 changed files with 224 additions and 28 deletions

View File

@@ -1,30 +1,26 @@
{ config, lib, pkgs, ... }: {
home =
let
home = config.home.homeDirectory;
in
{
sessionVariables = {
LV2_PATH = lib.makeSearchPath "lib/lv2" (with pkgs; [ calf ]);
TERM = "st-24bits";
home = {
sessionVariables = {
LV2_PATH = lib.makeSearchPath "lib/lv2" (with pkgs; [ calf ]);
TERM = "st-24bits";
};
file = with config; {
dunstrc = {
source = ./config/dunst/dunstrc;
target = "${xdg.configHome}/dunst/dunstrc";
};
file = {
dunstrc = {
source = ./config/dunst/dunstrc;
target = "${home}/.config/dunst/dunstrc";
};
stalonetray = {
source = ./config/stalonetrayrc;
target = "${home}/.stalonetrayrc";
};
ncmpcpp = {
source = ./config/ncmpcpp/config;
target = "${home}/.config/ncmpcpp/config";
};
mpv = {
source = ./config/mpv/mpv.conf;
target = "${home}/.config/mpv/mpv.conf";
};
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";
};
};
};
}