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
virtualisation.containers.enable = true;

View file

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

View file

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

View file

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

View file

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

View file

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