Reinitialized repo after massive overhaul

This commit is contained in:
2024-10-02 14:24:37 -05:00
parent 319e79bcd2
commit a501308ce9
45 changed files with 156 additions and 290 deletions

36
home/programs/flake.nix Normal file
View File

@@ -0,0 +1,36 @@
{
description = "Nathan user program config";
inputs = {
ags.url = "./ags";
neovim.url = "./neovim";
terminal.url = "./terminal"; #home manager only
rofi.url = "./rofi";
pywal.url = "./pywal";
hyprland.url = "./hyprland";
};
outputs = { self, ... }@inputs: {
hmModule = { config, lib, pkgs, ... }: {
imports = [
inputs.ags.hmModule
inputs.neovim.hmModule
inputs.hyprland.hmModule
inputs.terminal.hmModule
inputs.rofi.hmModule
inputs.pywal.hmModule
./calcurse
];
};
};
}