2024-01-15 23:21:31 +00:00
|
|
|
# Unlike other custom modules such as from NixOS and home-manager, all
|
|
|
|
# flake-part modules are considered internal so there's no need for an internal
|
|
|
|
# flag. We can just import these directly. Nobody should be using this except
|
|
|
|
# this project (and also my other projects).
|
|
|
|
{ lib, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./images.nix
|
2024-03-03 23:44:40 +00:00
|
|
|
./disko-configurations.nix
|
2024-01-16 06:54:50 +00:00
|
|
|
./deploy-rs-nodes.nix
|
2024-01-17 09:31:35 +00:00
|
|
|
./home-configurations.nix
|
2024-01-17 09:31:21 +00:00
|
|
|
./home-modules.nix
|
2024-01-25 11:12:58 +00:00
|
|
|
./nixvim-modules.nix
|
2024-01-25 11:09:57 +00:00
|
|
|
./nixvim-configurations.nix
|
2024-07-22 11:45:56 +00:00
|
|
|
./wrapper-manager-packages.nix
|
2024-01-16 06:54:50 +00:00
|
|
|
./setups
|
2024-01-15 23:21:31 +00:00
|
|
|
];
|
|
|
|
}
|