diff --git a/.envrc b/.envrc index 662a2561f1..9da18937ae 100644 --- a/.envrc +++ b/.envrc @@ -1,8 +1,5 @@ #shellcheck disable=SC2148,SC2155 -watch_file flake.nix -use flake - use_sops() { local path=${1:-$PWD/secrets.yaml} eval "$(sops -d --output-type dotenv "$path" | direnv dotenv bash /dev/stdin)" diff --git a/.vscode/settings.json b/.vscode/settings.json index be00b2d48a..26dc56df35 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -36,8 +36,7 @@ "prettier.configPath": ".ci/prettier/.prettierrc.yaml", "prettier.ignorePath": ".ci/prettier/.prettierignore", "yaml.schemas": { - "Kubernetes": "kubernetes/*.yaml", - "https://json.schemastore.org/kustomization.json": "file:///Users/scotte/Development/k8s-homelab/kubernetes/apps/tekton/tasks/kustomization.yaml" + "Kubernetes": "kubernetes/*.yaml" }, "yaml.customTags": ["!env_var"], "explorer.autoReveal": false, diff --git a/flake.lock b/flake.lock deleted file mode 100644 index fa7a6a5667..0000000000 --- a/flake.lock +++ /dev/null @@ -1,61 +0,0 @@ -{ - "nodes": { - "flake-utils": { - "inputs": { - "systems": "systems" - }, - "locked": { - "lastModified": 1710146030, - "narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" - } - }, - "nixpkgs": { - "locked": { - "lastModified": 1711401922, - "narHash": "sha256-QoQqXoj8ClGo0sqD/qWKFWezgEwUL0SUh37/vY2jNhc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "07262b18b97000d16a4bdb003418bd2fb067a932", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "root": { - "inputs": { - "flake-utils": "flake-utils", - "nixpkgs": "nixpkgs" - } - }, - "systems": { - "locked": { - "lastModified": 1681028828, - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", - "owner": "nix-systems", - "repo": "default", - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", - "type": "github" - }, - "original": { - "owner": "nix-systems", - "repo": "default", - "type": "github" - } - } - }, - "root": "root", - "version": 7 -} diff --git a/flake.nix b/flake.nix deleted file mode 100644 index e11dfe39d0..0000000000 --- a/flake.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ - description = "A basic flake with a shell"; - inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; - inputs.flake-utils.url = "github:numtide/flake-utils"; - - outputs = { - nixpkgs, - flake-utils, - ... - }: - flake-utils.lib.eachDefaultSystem ( - system: let - pkgs = nixpkgs.legacyPackages.${system}; - in { - devShells.default = pkgs.mkShell { - packages = with pkgs; [ - ansible - helmfile - ]; - }; - } - ); -}