diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-12-20 17:50:16 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-12-20 17:50:16 +0100 |
commit | 0ac11166a8fb22d1ce4de111f46e8a3ba1de7663 (patch) | |
tree | 25187cbc4273c69ca553dc0450b69fdfb9bea19a /flake/default.nix | |
parent | fix(modules/lf): Always retry connecting to the server (diff) | |
download | nixos-config-0ac11166a8fb22d1ce4de111f46e8a3ba1de7663.tar.gz nixos-config-0ac11166a8fb22d1ce4de111f46e8a3ba1de7663.zip |
refactor(lib): Upstream `lib` to vhack.eu
This allows to share it with the server config.
Diffstat (limited to 'flake/default.nix')
-rw-r--r-- | flake/default.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/flake/default.nix b/flake/default.nix index 16ae52c6..2c8d6f6b 100644 --- a/flake/default.nix +++ b/flake/default.nix @@ -41,6 +41,7 @@ # my things shell_library sysLib + nixLib templates # modules home-manager @@ -61,7 +62,7 @@ }; tests = import ../tests { - inherit pkgs nixpkgs_as_input myPkgs sysLib; + inherit pkgs nixpkgs_as_input myPkgs sysLib nixLib; inherit (pkgs) lib; extraModules = { termfilechooser = "${nixpkgs_open_prs.nixpkgs-tfc}/nixos/modules/config/xdg/portals/termfilechooser.nix"; @@ -80,7 +81,7 @@ in { inherit nixosConfigurations; checks."${system}" = - nixLib.maybeMerge { + nixLib.warnMerge { inherit (self.packages."${system}") nvim |