feat(npins): Remove nixos-unstable

This commit is contained in:
Tom Hubrecht 2023-12-12 14:45:01 +01:00
parent 86f53a54e6
commit f8443e00d1
3 changed files with 4 additions and 14 deletions

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, sources, ... }:
{ config, lib, pkgs, ... }:
let
inherit (lib) mkDefault mkEnableOption mkIf mkOption types;
@ -20,11 +20,7 @@ in {
package = mkOption {
type = types.package;
default = let pkgs = import sources.nixos-unstable { };
in import ./package {
inherit pkgs;
inherit (pkgs) lib;
};
default = import ./package { inherit pkgs; };
};
port = mkOption {