Files
dotfiles/home/natto/stuff.nix
Amneesh Singh f89fefa53d Satori: a.
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2022-03-28 04:57:27 +05:30

19 lines
394 B
Nix

{ config, lib, pkgs, ... }: {
home =
let
home = config.home.homeDirectory;
in
{
sessionVariables = {
LV2_PATH = lib.makeSearchPath "lib/lv2" (with pkgs; [ calf ]);
TERM = "st-24bits";
};
file = {
dunstrc = {
source = ./config/dunst/dunstrc;
target = "${home}/.config/dunst/dunstrc";
};
};
};
}