Skip to content

Commit

Permalink
refactor(flake): implicit inclusion of configs/dummy.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
mightyiam committed Feb 13, 2024
1 parent 9f493a4 commit 52ad737
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions configs/all-configurations.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,23 @@
flarum = {
imports = [
./flarum
./dummy.nix
];
};
pretalx-postgresql = {
imports = [
./pretalx/pretalx.nix
./pretalx/postgresql.nix
./dummy.nix
];
};
pretalx-mysql = {
imports = [
./pretalx/pretalx.nix
./pretalx/mysql.nix
./dummy.nix
];
};
kbin = {
imports = [
./kbin
./dummy.nix
];
};
}
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@

nixosConfigurations =
mapAttrs
(_: config: nixosSystem {modules = [config] ++ attrValues extendedModules;})
(_: config: nixosSystem {modules = [config ./configs/dummy.nix] ++ attrValues extendedModules;})
rawNixosConfigs;

eachDefaultSystemOutputs = flake-utils.lib.eachDefaultSystem (system: let
Expand Down

0 comments on commit 52ad737

Please sign in to comment.