send-pass:
rsync -ai --delete ../sec/pass julm@sourcephile.fr:work/sourcephile/sec/
+send-nixops:
+ rsync -ai --delete ../sec/nixops julm@sourcephile.fr:work/sourcephile/sec/
recv-pass:
rsync -ai --delete julm@sourcephile.fr:work/sourcephile/sec/pass ../sec/
recv-gnupg:
options = "--delete-older-than 30d";
};
nixPath = [
+ # WARNING: this is a hack to avoid copying Nixpkgs
+ # a second time into the Nix store.
+ # It makes only sense when Nixpkgs is already in the Nix store,
+ # and is registered.
"nixpkgs=${toString pkgs.path}"
];
};
environment = {
#checkConfigurationOptions = false;
+ #etc.nixpkgs.source = (pkgs.runCommandLocal "pkgs.path" {propagatedBuildInputs=[pkgs.path]; buildInputs=[pkgs.path];} "mkdir $out");
systemPackages = with pkgs; [
+ pkgs.path # WARNING: this is a hack to register the path to Nixpkgs. See nix.nixPath.
binutils
+ pkgs.neofetch
#dnsutils
dstat
htop
localNixpkgsPatches = [
patches/direnv.diff
];
- nixpkgs = originPkgs.stdenv.mkDerivation {
+ nixpkgs = originPkgs.applyPatches {
name = "nixpkgs-patched";
src = originNixpkgs;
- phases = [ "unpackPhase" "patchPhase" ];
patches = map originPkgs.fetchpatch remoteNixpkgsPatches ++ localNixpkgsPatches;
postPatch = ''
- set -x
patch=$(printf '%s\n' ${builtins.concatStringsSep " "
(map (p: p.sha256) remoteNixpkgsPatches ++ localNixpkgsPatches)} |
sort | sha256sum | cut -c -7)
- mv $PWD $out
- echo "+patch-$patch" >$out/.version-suffix
+ echo "+patch-$patch" >.version-suffix
'';
};
pkgs = import nixpkgs {