let nixpkgs_channel = builtins.getEnv "nixpkgs_channel"; originNixpkgs = import (.config/nixpkgs-channel + ("/" + nixpkgs_channel + ".nix")); originPkgs = import originNixpkgs { config = {}; # Make the config pure, ignoring user's config. overlays = []; }; nixpkgsPatches = [ /* { meta.description = "nsd : use types.lines where appropriate"; url = "https://github.com/NixOS/nixpkgs/pull/78968.diff"; sha256 = "11bqq1g1ax6i7xghihyhklmqpsq3njalardp6nvzphkjgxrypb47"; } { meta.description = "shorewall: init at 5.2.3.3"; url = "https://github.com/NixOS/nixpkgs/pull/46131.diff"; sha256 = "0mfzlcr23ni5spnwksmmls50sw10alqbr5j6hjrwp9i30z0419yx"; } */ { meta.description = "Dovecot plugin for Full Text Search (FTS) with Xapian"; url = "https://github.com/NixOS/nixpkgs/pull/78780.diff"; sha256 = "053md69ryybj27cp0xdfrza48zyzpblk6wvb2m2dbs9hm0gmcwc4"; } /* Disabled because it triggers the local build of too many reverse-dependencies { meta.description = "openldap: enable sha2 and pbkdf2 modules"; url = "https://github.com/NixOS/nixpkgs/pull/79286.diff"; sha256 = "0y255x74qksqy7fm4bdwlknhm3s55vgfgbv4dd7580p4lcavya0m"; } */ /* { meta.description = "Replace simp-le with lego and support DNS-01 challenge"; url = "https://github.com/NixOS/nixpkgs/pull/77578.diff"; sha256 = "15zs2146zh54jg1gywrcwyqxpx7izc35vlakk3cvrlqwwsvlr2rf"; } */ { meta.description = "dstat: fix pluginpath"; url = "https://github.com/NixOS/nixpkgs/pull/80151.diff"; sha256 = "0jjw2gvp7b7v2n2m2d6yj0gw711j6p9lyjf5ywp2y9ql6905qf4b"; } { meta.description = "shorewall: fix warnings due to types.loaOf being deprecated"; url = "https://github.com/NixOS/nixpkgs/pull/80154.diff"; sha256 = "0b216m1rib3jl6s3r5cbkd5h1bfhppikg4cz9ayr1fspsflr3bci"; } ]; localNixpkgsPatches = [ ]; nixpkgs = originPkgs.stdenv.mkDerivation { name = "nixpkgs-patched"; src = originNixpkgs; phases = [ "unpackPhase" "patchPhase" ]; patches = map originPkgs.fetchpatch nixpkgsPatches ++ localNixpkgsPatches; postPatch = '' patch=$(printf '%s\n' ${builtins.concatStringsSep " " (map (p: p.sha256) nixpkgsPatches)} | sort | sha256sum | cut -c -7) mv $PWD $out echo "+patch-$patch" >$out/.version-suffix ''; }; pkgs = import nixpkgs { config = {}; # Make the config pure, ignoring user's config. overlays = import ./overlays.nix; }; lib = pkgs.lib; nixos = pkgs.nixos {}; # Configuration of shell/modules/ configuration = {config, ...}: { imports = [ ]; nix = { nixConf = '' auto-optimise-store = true ''; }; nix-plugins = { enable = true; }; gnupg = { enable = true; gnupgHome = toString ../sec/gnupg; keys = import shell/openpgp.nix; gpgExtraConf = '' trusted-key 0xB2450D97085B7B8C ''; }; openssl = { enable = true; opensslHome = toString ../sec/openssl; certificates = import shell/x509.nix; }; openssh = { # WARNING: nixops uses its own ssh, not this one. enable = true; sshConf = '' Ciphers aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr Compression no #CompressionLevel 4 ControlMaster auto ControlPath ${builtins.toString ../sec/ssh}/ssh-%h-%p-%r.socket HashKnownHosts no #SSAPIAuthentication no SendEnv LANG LC_* StrictHostKeyChecking yes UserKnownHostsFile ${builtins.toString ../sec/ssh/known_hosts} ''; }; virtualbox = { enable = true; }; }; # Using modules enables to separate specific configurations # from reusable code in shell/modules.nix and shell/modules/ # which may find its way in another git repository one day. modules = (import shell/modules.nix { inherit pkgs lib; modules = [ configuration ]; }).config; in pkgs.mkShell { name = "sourcephile-nix"; src = null; #preferLocalBuild = true; #allowSubstitutes = false; buildInputs = modules.nix-shell.buildInputs ++ [ nixos.nixos-generate-config nixos.nixos-install nixos.nixos-enter #pkgs.binutils pkgs.coreutils pkgs.cryptsetup pkgs.curl #pkgs.direnv pkgs.dnsutils #pkgs.dropbear pkgs.e2fsprogs pkgs.git pkgs.glibcLocales pkgs.gnumake pkgs.gnupg pkgs.htop #pkgs.inetutils pkgs.ipcalc #pkgs.iputils pkgs.less pkgs.libfaketime pkgs.ldns #pkgs.ldns.examples #pkgs.mailutils pkgs.man pkgs.mdadm pkgs.gptfdisk pkgs.ncdu pkgs.ncurses pkgs.nixops #pkgs.openssl pkgs.pass pkgs.procps pkgs.rsync #pkgs.rxvt_unicode.terminfo #pkgs.sqlite pkgs.sqlite #pkgs.sudo pkgs.tig pkgs.time #pkgs.tmux pkgs.tree pkgs.utillinux #pkgs.vim #pkgs.virtualbox pkgs.which pkgs.xdg_utils pkgs.zfs pkgs.fio pkgs.strace pkgs.utillinux #pkgs.zfstools ]; #enableParallelBuilding = true; shellHook = '' echo >&2 "nix: running shellHook" # WARNING: beware that sudo may reset the environment, # and especially PATH, to some system's default. NIX_SHELL_PATH=$PATH unset __ETC_PROFILE_SOURCED unset __NIXOS_SET_ENVIRONMENT_DONE test ! -e /etc/profile || . /etc/profile test ! -e ~/.profile || . ~/.profile # nix test ! -e ~/.nix-profile/etc/profile.d/nix.sh || . ~/.nix-profile/etc/profile.d/nix.sh # home-manager unset __HM_SESS_VARS_SOURCED test ! -e ~/.nix-profile/etc/profile.d/hm-session-vars.sh || . ~/.nix-profile/etc/profile.d/hm-session-vars.sh PATH=$NIX_SHELL_PATH:$PATH export NIX_PATH="nixpkgs=${toString pkgs.path}:nixpkgs-overlays="$PWD"/overlays" export nixpkgs_channel=${nixpkgs_channel} # Cleanup "../sec/tmp/" # This is done when entering the nix-shell # because direnv already hooks trap EXIT. (cd "$PWD" && find ../sec/tmp -type f -exec shred -fu {} +) ${modules.nix-shell.shellHook} # locales export LANG=fr_FR.UTF-8 export LC_CTYPE=fr_FR.UTF-8 # password-store export PASSWORD_STORE_DIR="$PWD"/../sec/pass # gpg export GPG_TTY=$(tty) gpg-connect-agent updatestartuptty /bye >/dev/null # git gitdir="$PWD"/.git test ! -f "$gitdir" || while IFS=" :" read -r hdr gitdir; do [ "$hdr" != gitdir ] || break; done <"$gitdir" ln -fnsr \ "$PWD"/.lib/git/hooks/prepare-commit-msg--longuest-common-prefix \ "$gitdir"/hooks/prepare-commit-msg # nixops #export NIXOPS_DEPLOYMENT="staging" export NIXOPS_STATE="$PWD"/../sec/nixops/state.nixops NIXOPS_OPTS+=" --show-trace" export NIXOPS_OPTS # disnix #export DISNIXOS_USE_NIXOPS=1 #export DISNIX_CLIENT_INTERFACE=disnix-nixops-client #export DISNIX_PROFILE=default #export DISNIX_TARGET_PROPERTY=hostname #export DYSNOMIA_STATEDIR="$PWD"/../sec/dysnomia ''; }