let # Pin the deployment package-set to a specific version of nixpkgs # pkgs = import (builtins.fetchTarball { # url = "https://github.com/NixOS/nixpkgs/archive/e6377ff35544226392b49fa2cf05590f9f0c4b43.tar.gz"; # sha256 = "1fra9wwy5gvj5ibayqkzqpwdf715bggc0qbmrfch4fghwvl5m70l"; # }) {}; pkgs = import {}; manage = { deployment = { tags = [ "manage" "ekman" ]; allowLocalDeployment = true; targetHost = null; }; imports = [ ./manage ]; }; login = import ./login { inherit pkgs; }; c0 = import ./c0 { inherit pkgs; }; c0x = import ./c0x { inherit pkgs; }; c1 = import ./c1 { inherit pkgs; }; fs-work = import ./fs-work { inherit pkgs; }; fs-backup = import ./fs-backup { inherit pkgs; }; in { inherit manage; } // login // c0 // c0x // c1 // fs-work // fs-backup