home: major restructuring

needs more work
This commit is contained in:
2022-03-15 10:42:50 +05:30
parent 81452ba490
commit ed3bf181ef
35 changed files with 326 additions and 435 deletions

17
home/natto/stuff.nix Normal file
View File

@@ -0,0 +1,17 @@
{ config, lib, pkgs, ... }: {
home =
let
home = config.home.homeDirectory;
in
{
sessionVariables = {
LV2_PATH = lib.makeSearchPath "lib/lv2" (with pkgs; [ calf ]);
};
file = {
dunstrc = {
source = ./config/dunst/dunstrc;
target = "${home}/.config/dunst/dunstrc";
};
};
};
}