26 lines
345 B
Nix
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
|
|
];
|
|
};
|
|
|
|
};
|
|
}
|