diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-04-20 01:58:14 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-04-25 00:04:58 +0200 |
commit | b1566203381206632b4f00b7120c4484089ca924 (patch) | |
tree | e362f605eb49ff8be87bd9f44fafd02f18d051ae /Makefile | |
parent | 5ea02e5164d6be1eba8e7b2341105205ead98a87 (diff) | |
download | NUR-b1566203381206632b4f00b7120c4484089ca924.tar.gz NUR-b1566203381206632b4f00b7120c4484089ca924.tar.zst NUR-b1566203381206632b4f00b7120c4484089ca924.zip |
Remove useless scripts after migration to home-manager
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 26 |
1 files changed, 2 insertions, 24 deletions
@@ -1,4 +1,4 @@ | |||
1 | subrecipes = setup | 1 | subrecipes = setup nix-info |
2 | subrecipes += nixops ssh-eldiron ssh-backup-2 ssh-monitoring-1 | 2 | subrecipes += nixops ssh-eldiron ssh-backup-2 ssh-monitoring-1 |
3 | subrecipes += info debug dry-run build upload deploy deploy-reboot reboot | 3 | subrecipes += info debug dry-run build upload deploy deploy-reboot reboot |
4 | subrecipes += list-generations delete-generations cleanup | 4 | subrecipes += list-generations delete-generations cleanup |
@@ -7,28 +7,6 @@ ${subrecipes}: | |||
7 | @$(MAKE) --no-print-directory -C nixops/ $@ | 7 | @$(MAKE) --no-print-directory -C nixops/ $@ |
8 | .PHONY: ${subrecipes} | 8 | .PHONY: ${subrecipes} |
9 | 9 | ||
10 | # This will automatically upgrade to latest version at each build | ||
11 | nixpkgs ?= https://nixos.org/channels/nixos-19.03/nixexprs.tar.xz | ||
12 | NIX_PATH = nixpkgs=${nixpkgs}:nixpkgsNext=${nixpkgs}:nixpkgsPrevious=${nixpkgs} | ||
13 | |||
14 | nix-path: | ||
15 | @echo "export NIX_PATH=$(NIX_PATH)" | ||
16 | |||
17 | env: | ||
18 | ./scripts/make-env | ||
19 | |||
20 | env-dry-run: | ||
21 | ./scripts/make-env --dry-run | ||
22 | |||
23 | nix-info: | ||
24 | @version=$$(nix eval --option tarball-ttl 1 --raw nixpkgs.lib.version) && \ | ||
25 | mainversion=$$(echo $$version | cut -d"." -f -2) && \ | ||
26 | echo "https://releases.nixos.org/nixos/$$mainversion/nixos-$$version/nixexprs.tar.xz" && \ | ||
27 | nix-instantiate --find-file nixpkgs | ||
28 | |||
29 | nix-info-nixops: | ||
30 | @$(MAKE) --no-print-directory -C nixops/ nix-info | ||
31 | |||
32 | nur: | 10 | nur: |
33 | ./scripts/make-nur | 11 | ./scripts/make-nur |
34 | curl -o /dev/null -XPOST "https://nur-update.herokuapp.com/update?repo=immae" | 12 | curl -o /dev/null -XPOST "https://nur-update.herokuapp.com/update?repo=immae" |
@@ -36,4 +14,4 @@ nur: | |||
36 | shellcheck: | 14 | shellcheck: |
37 | shellcheck scripts/* nixops/scripts/* modules/private/gitolite/gitolite_ldap_groups.sh modules/private/ssh/ldap_authorized_keys.sh modules/private/pub/restrict | 15 | shellcheck scripts/* nixops/scripts/* modules/private/gitolite/gitolite_ldap_groups.sh modules/private/ssh/ldap_authorized_keys.sh modules/private/pub/restrict |
38 | 16 | ||
39 | .PHONY: env env-dry-run nix-info nur shellcheck | 17 | .PHONY: nur shellcheck |