diff --git a/.gitea/workflows/update-flake-lock.yml b/.gitea/workflows/update-flake-lock.yml index 4660bce..e215889 100644 --- a/.gitea/workflows/update-flake-lock.yml +++ b/.gitea/workflows/update-flake-lock.yml @@ -1,14 +1,16 @@ name: update-flake-lock on: schedule: - - cron: "0 0 * * *" + - cron: "0 1 * * *" jobs: lockfile: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 + with: + ref: "main" - name: Setup sudo (required for the next step) run: apt-get update && apt-get install -y sudo - name: Setup nix @@ -29,7 +31,7 @@ jobs: run: | git diff git config --global user.name "Gitea Bot" - git config --global user.email "gitea@xaked.com" + git config --global user.email "bot@git.palkoi.net" git add flake.lock - git commit -S -m '[Gitea CI]: bump flake.lock versions' + git commit -m 'choke(nix-lock): bump flake.lock versions' git push diff --git a/flake.lock b/flake.lock index 41b3976..7f2ff4a 100644 --- a/flake.lock +++ b/flake.lock @@ -5,11 +5,11 @@ "systems": "systems" }, "locked": { - "lastModified": 1694529238, - "narHash": "sha256-zsNZZGTGnMOf9YpHKJqMSsa0dXbfmxeoJ7xHlrt+xmY=", + "lastModified": 1701680307, + "narHash": "sha256-kAuep2h5ajznlPMD9rnQyffWG8EM/C73lejGofXvdM8=", "owner": "numtide", "repo": "flake-utils", - "rev": "ff7b65b44d01cf9ba6a71320833626af21126384", + "rev": "4022d587cbbfd70fe950c1e2083a02621806a725", "type": "github" }, "original": { @@ -20,16 +20,16 @@ }, "nixpkgs": { "locked": { - "lastModified": 1697226376, - "narHash": "sha256-cumLLb1QOUtWieUnLGqo+ylNt3+fU8Lcv5Zl+tYbRUE=", + "lastModified": 1701539137, + "narHash": "sha256-nVO/5QYpf1GwjvtpXhyxx5M3U/WN0MwBro4Lsk+9mL0=", "owner": "nixos", "repo": "nixpkgs", - "rev": "898cb2064b6e98b8c5499f37e81adbdf2925f7c5", + "rev": "933d7dc155096e7575d207be6fb7792bc9f34f6d", "type": "github" }, "original": { "owner": "nixos", - "ref": "nixos-23.05", + "ref": "nixos-23.11", "repo": "nixpkgs", "type": "github" } diff --git a/flake.nix b/flake.nix index a3eb503..bd8407f 100644 --- a/flake.nix +++ b/flake.nix @@ -1,7 +1,7 @@ { description = "NVIM Configuration"; inputs = { - nixpkgs.url = "github:nixos/nixpkgs/nixos-23.05"; + nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11"; flake-utils.url = "github:numtide/flake-utils"; }; outputs = inputs @ { @@ -62,22 +62,6 @@ withRuby = false; extraPython3Packages = false; extraMakeWrapperArgs = ''--prefix PATH : "${pkgs.lib.makeBinPath dependencies}" --set XDG_CONFIG_HOME "${self}"''; - # make sure impatient is loaded before everything else to speed things up - # configure = { - # customRC = - # '' - # lua << EOF - # package.path = "${self}/lua/?.lua;" .. package.path - # '' - # + pkgs.lib.readFile ./init.lua - # + '' - # EOF - # ''; - # # packages.myPlugins = with pkgs.vimPlugins; { - # # start = with pkgs.vimPlugins; []; - # # opt = with pkgs.vimPlugins; []; - # # }; - # }; }; apps.pwnvim = flake-utils.lib.mkApp { drv = self.packages.${system}.pwnvim;