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/enviroment: remove corePackages override

isabel e39ed1a3 ee4ab503

-63
-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 9 8 ./paths.nix # paths 10 9 ./wayland.nix # wayland settings 11 10 ./xdg.nix # move everything to nice placee
-62
modules/nixos/environment/packages.nix
··· 1 - { 2 - lib, 3 - pkgs, 4 - config, 5 - ... 6 - }: 7 - { 8 - # remove the core packages and instead i'll add them myself with packages I choose 9 - environment.corePackages = lib.mkForce [ ]; 10 - 11 - # we somewhat need to search for them beacuse they are not all in one place 12 - # https://github.com/search?q=repo%3ANixOS%2Fnixpkgs+corePackages+path%3Anixos%2Fmodules&type=code 13 - garden.packages = { 14 - # https://github.com/NixOS/nixpkgs/blob/e6eae2ee2110f3d31110d5c222cd395303343b08/nixos/modules/config/system-path.nix#L11-L41 15 - inherit (pkgs) 16 - acl 17 - attr 18 - bashInteractive # bash with ncurses support 19 - bzip2 20 - uutils-coreutils-noprefix # replaces: coreutils-full 21 - cpio 22 - curl 23 - uutils-diffutils # replaces: diffutils 24 - uutils-findutils # replaces: findutils 25 - gawk 26 - getent 27 - getconf 28 - gnugrep 29 - gnupatch 30 - uutils-sed # replaces gnused 31 - gnutar 32 - gzip 33 - xz 34 - less 35 - libcap 36 - ncurses 37 - netcat 38 - mkpasswd 39 - uutils-procps # replaces: procps 40 - su 41 - time 42 - util-linux 43 - which 44 - zstd 45 - ; 46 - 47 - # https://github.com/NixOS/nixpkgs/blob/f6521800aff648b639ec808d7079cb2a90d1652b/nixos/modules/config/system-path.nix#L50 48 - inherit (pkgs.stdenv.cc) libc; 49 - 50 - # https://github.com/NixOS/nixpkgs/blob/f6521800aff648b639ec808d7079cb2a90d1652b/nixos/modules/tasks/network-interfaces.nix#L1771-L1777 51 - inherit (pkgs) 52 - host 53 - uutils-hostname # replaces: hostname 54 - iproute2 55 - iputils 56 - ; 57 - 58 - # so odd 59 - # https://github.com/NixOS/nixpkgs/blob/f6521800aff648b639ec808d7079cb2a90d1652b/nixos/modules/programs/ssh.nix#L338 60 - openssh = config.services.openssh.package; 61 - }; 62 - }