From abd2825d40c30c2c4eface0ee2d8d4654b337042 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Estrella?= <2049686+sestrella@users.noreply.github.com> Date: Wed, 29 Nov 2023 02:47:54 -0500 Subject: [PATCH] Remove update-input command (#25) --- .github/workflows/ci.yml | 4 +--- flake.lock | 17 +++++++++++------ flake.nix | 2 +- 3 files changed, 13 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 144758f..551090b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,14 +11,12 @@ jobs: build: runs-on: ubuntu-latest steps: - - name: Checkout + - name: Checkout code uses: actions/checkout@v4 - name: Check Nix flake inputs uses: DeterminateSystems/flake-checker-action@v5 - name: Install Nix uses: DeterminateSystems/nix-installer-action@v8 - - name: Update vim-plugins lock - run: nix flake lock --update-input vim-plugins - name: Build configuration run: nix run home-manager/master -- build --flake ${{ github.workspace }} - name: Activate the configuration diff --git a/flake.lock b/flake.lock index 5511699..8f1c2f2 100644 --- a/flake.lock +++ b/flake.lock @@ -395,14 +395,19 @@ "nvim-cmp": "nvim-cmp" }, "locked": { - "lastModified": 1, - "narHash": "sha256-ayXR08MOUQj3ID2pZl3/hQKZNvL0nlWEPOaHYO+pQ3o=", - "path": "flakes/vim-plugins", - "type": "path" + "dir": "flakes/vim-plugins", + "lastModified": 1701242061, + "narHash": "sha256-CQA6YbSAlt2A98BIbrTCWIaKalhnHbZcfAoaXthn9to=", + "owner": "sestrella", + "repo": "home-manager.config", + "rev": "6c17642e9cc339def8af0720e0aeabe227c6f93e", + "type": "github" }, "original": { - "path": "flakes/vim-plugins", - "type": "path" + "dir": "flakes/vim-plugins", + "owner": "sestrella", + "repo": "home-manager.config", + "type": "github" } } }, diff --git a/flake.nix b/flake.nix index fac7557..e1f62b3 100644 --- a/flake.nix +++ b/flake.nix @@ -6,7 +6,7 @@ nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; home-manager.url = "github:nix-community/home-manager"; home-manager.inputs.nixpkgs.follows = "nixpkgs"; - vim-plugins.url = "path:flakes/vim-plugins"; + vim-plugins.url = "github:sestrella/home-manager.config?dir=flakes/vim-plugins"; vim-plugins.inputs.nixpkgs.follows = "nixpkgs"; };