37 lines
641 B
Nix
Executable File
37 lines
641 B
Nix
Executable File
{
|
|
description = "Unified System Configuration";
|
|
|
|
inputs = {
|
|
|
|
sddm.url = "./sddm";
|
|
|
|
srvcs.url = "./services";
|
|
|
|
pckgs.url = "./packages";
|
|
|
|
prgms.url = "./programs";
|
|
|
|
diskoConfig.url = "./disko";
|
|
|
|
impermanenceConfig.url = "./impermanence";
|
|
|
|
};
|
|
|
|
outputs = { self, ... }@inputs: {
|
|
|
|
nixosModule = { config, lib, pkgs, core_inputs, ... }: {
|
|
imports = [
|
|
./configuration/configuration.nix
|
|
# inputs.diskoConfig.module
|
|
# inputs.impermanenceConfig.module
|
|
inputs.sddm.module
|
|
inputs.srvcs.module
|
|
inputs.pckgs.module
|
|
inputs.prgms.module
|
|
];
|
|
};
|
|
|
|
};
|
|
|
|
}
|