home/natto: email config and misc shit
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
@@ -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";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user