Files
Olympus/system/programs/flake.nix
2024-10-18 07:40:46 -05:00

26 lines
345 B
Nix

{
description = "System program config";
inputs = {
ags.url = "./ags";
hyprland.url = "./hyprland";
};
outputs = { self, ... }@inputs: {
module = { config, lib, pkgs, ... }: {
imports = [
inputs.hyprland.module
inputs.ags.module
./git
./nh
./steam
];
};
};
}