23 lines
302 B
Nix
23 lines
302 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
|
|
];
|
|
};
|
|
|
|
};
|
|
}
|