my over complex system configurations dotfiles.isabelroses.com/
nixos nix flake dotfiles linux
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: remove overlay

isabel 20e598df 33bb333d

+3 -26
-12
docs/src/configuration/lix.md
··· 7 7 8 8 To do so we add the following snippet taken from [modules/base/nix/overlays/default.nix](https://github.com/isabelroses/dotfiles/blob/463e509725f610d802c483fdc00ce0b77cd778c2/modules/base/nixpkgs/overlays/default.nix#L13-L25). 9 9 What this does is use lix where possible rather than nix. 10 - 11 - ```nix 12 - _: prev: { 13 - # in order to reduce our closure size, we can override these packages to 14 - # use the nix package that we have installed, this will trigget a rebuild 15 - # of the packages that depend on them so hopefully its worth it for that 16 - # system space 17 - nixVersions = prev.nixVersions // { 18 - stable = config.nix.package; 19 - }; 20 - } 21 - ```
+3 -14
modules/iso/nixpkgs.nix
··· 1 1 # keep up to date with our "base" config 2 - { config, ... }: 3 2 { 4 - nixpkgs = { 5 - config = { 6 - allowUnfree = true; 7 - allowAliases = false; 8 - }; 9 - 10 - overlays = [ 11 - (_: prev: { 12 - nixVersions = prev.nixVersions // { 13 - stable = config.nix.package; 14 - }; 15 - }) 16 - ]; 3 + nixpkgs.config = { 4 + allowUnfree = true; 5 + allowAliases = false; 17 6 }; 18 7 }