···11# This NixOS configuration is for the custom recovery/installation media
22# using the minimal image here, probably built on GitHub Actions.
3344-{ lib, nixpkgs, ... }:
44+{
55+ lib,
66+ nixpkgs,
77+ self,
88+ nix4vscode,
99+ ...
1010+}:
511612{
713 imports = [
+9-2
shared/nix.nix
···11# This is the meta config file for nixpkgs and nix cli itself, including
22# trusted keys for cachix caches and stateVersion for NixOS.
3344-{ config, pkgs, lib, self, nix4vscode, ... }:
44+{
55+ config,
66+ pkgs,
77+ lib,
88+ self,
99+ nix4vscode,
1010+ ...
1111+}:
512613{
714 # Adopted from https://fnordig.de/til/nix/home-manager-allow-unfree.html,
···2128 nix = {
2229 gc = {
2330 automatic = true;
2424- dates = ["weekly"];
3131+ dates = [ "weekly" ];
2532 randomizedDelaySec = "30min";
2633 };
2734 settings = {