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