let originNixpkgs = import .config/nixpkgs-channel/nixos-19.09-small.nix; originPkgs = import originNixpkgs { config = {}; # Make the config pure, ignoring user's config. overlays = []; }; nixpkgs = originPkgs.stdenv.mkDerivation { name = "nixpkgs-patched"; src = originNixpkgs; phases = [ "unpackPhase" "patchPhase" ]; patches = map originPkgs.fetchpatch [ { meta.description = "nsd : use types.lines where appropriate"; url = "https://github.com/NixOS/nixpkgs/pull/78968.diff"; sha256 = "11bqq1g1ax6i7xghihyhklmqpsq3njalardp6nvzphkjgxrypb47"; } ]; postPatch = '' mkdir $out && cp -r * $out/ echo "19.09" > $out/.version echo "19.09pre-git.custom" > $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; }; 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.stdenv.mkDerivation { name = "sourcephile-nix"; src = null; #preferLocalBuild = true; #allowSubstitutes = false; buildInputs = modules.nix-shell.buildInputs ++ [ nixpkgs 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=${pkgs.path}:nixpkgs-overlays="$PWD"/overlays" # Cleanup "../sec/tmp/" # This is done when exiting the nix-shell # (or when… entering the directory with direnv # which spawns a nix-shell just to get the env). trap "cd '$PWD' && find ../sec/tmp -type f -exec shred -fu {} +" EXIT ${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 ''; }