diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-11-30 16:17:29 +0100 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-11-30 16:17:29 +0100 |
| commit | 4790d7cd0fce9c98e3ca889201182dd4c9952e13 (patch) | |
| tree | 44fbcc423feaf5f3ccda2ae668a7fe8e511ac84d /modules/by-name/ni/nixpkgs/config.nix | |
| parent | scripts/why-depends: Init (diff) | |
| download | nixos-config-4790d7cd0fce9c98e3ca889201182dd4c9952e13.zip | |
modules/nixpkgs/config: Remove
This file seems to be never referenced by anything.
Diffstat (limited to '')
| -rw-r--r-- | modules/by-name/ni/nixpkgs/config.nix | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/modules/by-name/ni/nixpkgs/config.nix b/modules/by-name/ni/nixpkgs/config.nix deleted file mode 100644 index ea8f3c45..00000000 --- a/modules/by-name/ni/nixpkgs/config.nix +++ /dev/null @@ -1,43 +0,0 @@ -# nixos-config - My current NixOS configuration -# -# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de> -# SPDX-License-Identifier: GPL-3.0-or-later -# -# This file is part of my nixos-config. -# -# You should have received a copy of the License along with this program. -# If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>. -{ - cfg, - lib, - packageSets, - ... -}: let - myPkgsOverlay = self: super: packageSets.soispha; -in { - nixpkgs = { - hostPlatform = cfg.systemName; - - overlays = [ - myPkgsOverlay - ]; - - config = { - # TODO: this fails because of the root tempsize, which should be increased - # contentAddressedByDefault = true; - - hostSystem = cfg.systemName; - - allowUnfreePredicate = pkg: - builtins.elem (lib.getName pkg) [ - "pypemicro" # required by pynitrokey - - # TODO(@bpeetz): Allow moving them to their respective module. <2025-04-25> - "steam" - "steam-unwrapped" - "steam-original" - "steam-run" - ]; - }; - }; -} |
