hopefully the last complete restructure of this repo
This commit is contained in:
41
home-manager/programs/flake.nix
Normal file
41
home-manager/programs/flake.nix
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
description = "Nathan user program config";
|
||||
|
||||
inputs = {
|
||||
|
||||
ags.url = "./ags";
|
||||
|
||||
nixvim.url = "/ssd1/Projects/Nixvim";
|
||||
|
||||
rofi.url = "./rofi";
|
||||
|
||||
pywal.url = "./pywal";
|
||||
|
||||
hyprland.url = "./hyprland";
|
||||
};
|
||||
|
||||
outputs = { self, ... }@inputs: {
|
||||
|
||||
hmModule = { config, lib, pkgs, ... }: {
|
||||
|
||||
imports = [
|
||||
inputs.ags.hmModule
|
||||
inputs.hyprland.hmModule
|
||||
./terminal
|
||||
inputs.rofi.hmModule
|
||||
inputs.pywal.hmModule
|
||||
./swaylock
|
||||
./calcurse
|
||||
./wayvnc
|
||||
];
|
||||
|
||||
home.packages = [
|
||||
inputs.nixvim.packages.${pkgs.system}.default
|
||||
];
|
||||
|
||||
home.sessionVariables.EDITOR = "nvim";
|
||||
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user