modules/autopatch: drop and replace with modules/nixpkgs-config
This commit is contained in:
parent
e62fbfea71
commit
af1cd6e0b6
3 changed files with 11 additions and 20 deletions
|
@ -1,18 +0,0 @@
|
|||
{
|
||||
nixpkgs.overlays = [
|
||||
(self: super:
|
||||
(let
|
||||
patched = import ../../packages/patched-derivations.nix super;
|
||||
in {
|
||||
|
||||
inherit (patched)
|
||||
kanidm
|
||||
prometheus-jitsi-exporter
|
||||
;
|
||||
|
||||
jre_headless = patched.jre17_standard;
|
||||
|
||||
})
|
||||
)
|
||||
];
|
||||
}
|
9
modules/nixpkgs-config/default.nix
Normal file
9
modules/nixpkgs-config/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{ depot, lib, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
depot.inputs.nixpkgs.nixosModules.readOnlyPkgs
|
||||
];
|
||||
|
||||
nixpkgs.overlays = lib.mkForce [];
|
||||
}
|
|
@ -6,7 +6,6 @@ in
|
|||
|
||||
{
|
||||
flake.nixosModules = with config.flake.nixosModules; {
|
||||
autopatch = ./autopatch;
|
||||
ascensions = ./ascensions;
|
||||
consul-distributed-services = ./consul-distributed-services;
|
||||
consul-service-registry = ./consul-service-registry;
|
||||
|
@ -23,6 +22,7 @@ in
|
|||
networking = ./networking;
|
||||
nix-builder = ./nix-builder;
|
||||
nix-config-server = ./nix-config/server.nix;
|
||||
nixpkgs-config = ./nixpkgs-config;
|
||||
nix-register-flakes = ./nix-register-flakes;
|
||||
patroni = ./patroni;
|
||||
port-magic = ./port-magic;
|
||||
|
@ -34,10 +34,10 @@ in
|
|||
tested = ./tested;
|
||||
|
||||
machineBase = group [
|
||||
autopatch
|
||||
enterprise
|
||||
maintenance
|
||||
minimal
|
||||
nixpkgs-config
|
||||
port-magic
|
||||
ssh
|
||||
systemd-extras
|
||||
|
|
Loading…
Reference in a new issue