ran deadnix

This commit is contained in:
Rouven Seifert 2024-10-08 21:36:52 +02:00
parent ea8efc298d
commit efc38dac8f
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
6 changed files with 7 additions and 8 deletions

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }: { pkgs, ... }:
{ {
# From: https://nixos.wiki/wiki/Podman # From: https://nixos.wiki/wiki/Podman
virtualisation.containers.enable = true; virtualisation.containers.enable = true;

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }: { config, ... }:
let let
domain = "decisions.${config.networking.domain}"; domain = "decisions.${config.networking.domain}";
in in

View file

@ -1,4 +1,4 @@
{ config, pkgs, lib, ... }: { config, pkgs, ... }:
let let
domain = "sso.${config.networking.domain}"; domain = "sso.${config.networking.domain}";
in in

View file

@ -1,4 +1,4 @@
{ config, pkgs, system, ... }: { config, pkgs, ... }:
let let
domain = "auth.${config.networking.domain}"; domain = "auth.${config.networking.domain}";
seedSettings = { seedSettings = {

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }: { ... }:
{ {
# provide access to iLO of colocated server # provide access to iLO of colocated server

View file

@ -1,7 +1,6 @@
_final: prev: _final: prev:
let let
inherit (prev) fetchurl; inherit (prev) fetchurl;
inherit (prev) fetchFromGitHub;
inherit (prev) callPackage; inherit (prev) callPackage;
in in
{ {
@ -29,8 +28,8 @@ in
# https://gitlab.com/mailman/mailman/-/issues/1137 # https://gitlab.com/mailman/mailman/-/issues/1137
# https://github.com/NixOS/nixpkgs/pull/321136 # https://github.com/NixOS/nixpkgs/pull/321136
pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [ pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [
(python-final: python-prev: { (_python-final: python-prev: {
readme-renderer = python-prev.readme-renderer.overridePythonAttrs (oldAttrs: { readme-renderer = python-prev.readme-renderer.overridePythonAttrs (_oldAttrs: {
propagatedBuildInputs = [ python-prev.cmarkgfm ]; propagatedBuildInputs = [ python-prev.cmarkgfm ];
}); });
}) })