20 lines
183 B
Nix
20 lines
183 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.nix-config.hypr;
|
|
in
|
|
{
|
|
options = {
|
|
};
|
|
|
|
imports = [
|
|
./aliases.nix
|
|
./cryptography.nix
|
|
./git.nix
|
|
./kluster.nix
|
|
];
|
|
}
|