mirror of
https://github.com/RGBCube/ncc
synced 2025-07-29 19:17:45 +00:00
Use recursive update instead of //
This commit is contained in:
parent
c09259d4c7
commit
7360237ab8
9 changed files with 38 additions and 59 deletions
|
@ -40,7 +40,9 @@
|
|||
hostPlatform = import (configurationDirectory + "/platform.nix");
|
||||
in {
|
||||
nixosConfigurations.${hostName} = nixosSystem {
|
||||
lib = nixpkgs.lib;
|
||||
lib = nixpkgs.lib // {
|
||||
recursiveUpdate3 = x: y: z: nixpkgs.lib.recursiveUpdate x (nixpkgs.lib.recursiveUpdate y z);
|
||||
};
|
||||
|
||||
pkgs = import nixpkgs {
|
||||
system = hostPlatform;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue