mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
colmena: use currentSystem instead of hardcode
This commit is contained in:
parent
06913e7134
commit
6aa4169e34
1 changed files with 2 additions and 1 deletions
|
@ -78,7 +78,8 @@ in
|
||||||
'';
|
'';
|
||||||
|
|
||||||
colmena =
|
colmena =
|
||||||
{ meta.nixpkgs = nixpkgs.legacyPackages."x86_64-linux"; } //
|
# colmena evaluates in impure mode, so currentSystem is OK for now
|
||||||
|
{ meta.nixpkgs = nixpkgs.legacyPackages.${builtins.currentSystem}; } //
|
||||||
builtins.mapAttrs
|
builtins.mapAttrs
|
||||||
(name: value: {
|
(name: value: {
|
||||||
imports = value.modules ++ [
|
imports = value.modules ++ [
|
||||||
|
|
Loading…
Reference in a new issue