Regenerated

This commit is contained in:
2026-03-23 16:30:00 +00:00
parent 6638f2ccf9
commit ce483f0941
8 changed files with 256 additions and 5 deletions
+6 -5
View File
@@ -33,15 +33,16 @@
in rec {
# Direct NixOS configuration for traveldroid
nixosConfigurations = {
traveldroid = {
# Core packages and modules
pkgs = pkgs;
traveldroid = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
./hosts/traveldroid.nix
];
# Pass flakeRoot to modules for reference
extraArgs = { inherit flakeRoot; };
specialArgs = {
inherit flakeRoot;
};
};
};