nixos-config/modules/flake-parts/default.nix

22 lines
590 B
Nix
Raw Normal View History

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-09-22 12:46:32 +00:00
./devpackages.nix
2024-10-26 10:35:21 +00:00
./devcontainers.nix
./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
./nixvim-configurations.nix
./wrapper-manager-packages.nix
2024-01-16 06:54:50 +00:00
./setups
2024-01-15 23:21:31 +00:00
];
}