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.

nixos/nixpkgs: corePackages replacment

isabel ca1d76e8 2cd9d668

+41
+1
modules/nixos/environment/default.nix
··· 5 5 ./documentation.nix # nixos' provided documentation 6 6 ./fonts.nix # fonts 7 7 ./locale.nix # locale settings 8 + ./packages.nix # core packages for nixos 8 9 ./paths.nix # paths 9 10 ./wayland.nix # wayland settings 10 11 ./xdg.nix # move everything to nice placee
+40
modules/nixos/environment/packages.nix
··· 1 + { lib, pkgs, ... }: 2 + { 3 + # remove the core packages and instead i'll add them myself with packages I choose 4 + environment.corePackages = lib.mkForce [ ]; 5 + 6 + garden.packages = { 7 + # https://github.com/NixOS/nixpkgs/blob/e6eae2ee2110f3d31110d5c222cd395303343b08/nixos/modules/config/system-path.nix#L11-L41 8 + inherit (pkgs) 9 + acl 10 + attr 11 + bashInteractive # bash with ncurses support 12 + bzip2 13 + uutils-coreutils-noprefix # replaces: coreutils-full 14 + cpio 15 + curl 16 + uutils-diffutils # replaces: diffutils 17 + uutils-findutils # replaces: findutils 18 + gawk 19 + getent 20 + getconf 21 + gnugrep 22 + gnupatch 23 + uutils-sed # replaces gnused 24 + gnutar 25 + gzip 26 + xz 27 + less 28 + libcap 29 + ncurses 30 + netcat 31 + mkpasswd 32 + procps 33 + su 34 + time 35 + util-linux 36 + which 37 + zstd 38 + ; 39 + }; 40 + }