mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
fix: name -> _
This commit is contained in:
parent
d35f67edf4
commit
aea175c6ba
1 changed files with 2 additions and 2 deletions
|
|
@ -15,13 +15,13 @@
|
|||
inherit (lib.attrsets) mapAttrs;
|
||||
in {
|
||||
inherit tree;
|
||||
nixosConfigurations = mapAttrs (name: path: nixpkgs.lib.nixosSystem {
|
||||
nixosConfigurations = mapAttrs (_: path: nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
path
|
||||
];
|
||||
} ) tree.nixos.systems;
|
||||
darwinConfigurations = mapAttrs (name: path: darwin.lib.darwinSystem {
|
||||
darwinConfigurations = mapAttrs (_: path: darwin.lib.darwinSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
path
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue