Reinitialized repo after massive overhaul
This commit is contained in:
36
home/programs/flake.nix
Normal file
36
home/programs/flake.nix
Normal 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
|
||||
];
|
||||
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user