this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

neovim nightly

+91 -13
+81 -7
flake.lock
··· 1 1 { 2 2 "nodes": { 3 + "flake-parts": { 4 + "inputs": { 5 + "nixpkgs-lib": [ 6 + "neovim-nightly-overlay", 7 + "nixpkgs" 8 + ] 9 + }, 10 + "locked": { 11 + "lastModified": 1775087534, 12 + "narHash": "sha256-91qqW8lhL7TLwgQWijoGBbiD4t7/q75KTi8NxjVmSmA=", 13 + "owner": "hercules-ci", 14 + "repo": "flake-parts", 15 + "rev": "3107b77cd68437b9a76194f0f7f9c55f2329ca5b", 16 + "type": "github" 17 + }, 18 + "original": { 19 + "owner": "hercules-ci", 20 + "repo": "flake-parts", 21 + "type": "github" 22 + } 23 + }, 3 24 "home-manager": { 4 25 "inputs": { 5 26 "nixpkgs": [ ··· 21 42 "type": "github" 22 43 } 23 44 }, 45 + "neovim-nightly-overlay": { 46 + "inputs": { 47 + "flake-parts": "flake-parts", 48 + "neovim-src": "neovim-src", 49 + "nixpkgs": "nixpkgs" 50 + }, 51 + "locked": { 52 + "lastModified": 1775693082, 53 + "narHash": "sha256-nnhkpfWsRutQh//KmVoIV7e9Gk90tBezjcoRr775BfU=", 54 + "owner": "nix-community", 55 + "repo": "neovim-nightly-overlay", 56 + "rev": "21b2795e6aeb4a0110bdc7bd81bad59c022c9986", 57 + "type": "github" 58 + }, 59 + "original": { 60 + "owner": "nix-community", 61 + "repo": "neovim-nightly-overlay", 62 + "type": "github" 63 + } 64 + }, 65 + "neovim-src": { 66 + "flake": false, 67 + "locked": { 68 + "lastModified": 1775689880, 69 + "narHash": "sha256-savZYhFAaBm3BQUdTrPOv7i5K18JFANJvyHv0uuvaWM=", 70 + "owner": "neovim", 71 + "repo": "neovim", 72 + "rev": "eefb50e352a689ec1a0a55d6827abea79960cd3d", 73 + "type": "github" 74 + }, 75 + "original": { 76 + "owner": "neovim", 77 + "repo": "neovim", 78 + "type": "github" 79 + } 80 + }, 24 81 "niri": { 25 82 "inputs": { 26 83 "niri-stable": "niri-stable", ··· 81 138 }, 82 139 "nixpkgs": { 83 140 "locked": { 84 - "lastModified": 1767799921, 85 - "narHash": "sha256-r4GVX+FToWVE2My8VVZH4V0pTIpnu2ZE8/Z4uxGEMBE=", 141 + "lastModified": 1775639890, 142 + "narHash": "sha256-9O9gNidrdzcb7vgKGtff7QiLtr0IsVaCi0pAXm8anhQ=", 86 143 "owner": "NixOS", 87 144 "repo": "nixpkgs", 88 - "rev": "d351d0653aeb7877273920cd3e823994e7579b0b", 145 + "rev": "456e8a9468b9d46bd8c9524425026c00745bc4d2", 89 146 "type": "github" 90 147 }, 91 148 "original": { 92 - "id": "nixpkgs", 93 - "ref": "nixos-25.11", 94 - "type": "indirect" 149 + "owner": "NixOS", 150 + "ref": "nixpkgs-unstable", 151 + "repo": "nixpkgs", 152 + "type": "github" 95 153 } 96 154 }, 97 155 "nixpkgs-stable": { ··· 110 168 "type": "github" 111 169 } 112 170 }, 171 + "nixpkgs_2": { 172 + "locked": { 173 + "lastModified": 1767799921, 174 + "narHash": "sha256-r4GVX+FToWVE2My8VVZH4V0pTIpnu2ZE8/Z4uxGEMBE=", 175 + "owner": "NixOS", 176 + "repo": "nixpkgs", 177 + "rev": "d351d0653aeb7877273920cd3e823994e7579b0b", 178 + "type": "github" 179 + }, 180 + "original": { 181 + "id": "nixpkgs", 182 + "ref": "nixos-25.11", 183 + "type": "indirect" 184 + } 185 + }, 113 186 "quickshell": { 114 187 "inputs": { 115 188 "nixpkgs": [ ··· 133 206 "root": { 134 207 "inputs": { 135 208 "home-manager": "home-manager", 209 + "neovim-nightly-overlay": "neovim-nightly-overlay", 136 210 "niri": "niri", 137 - "nixpkgs": "nixpkgs", 211 + "nixpkgs": "nixpkgs_2", 138 212 "quickshell": "quickshell" 139 213 } 140 214 },
+2
flake.nix
··· 19 19 url = "github:sodiboo/niri-flake"; 20 20 inputs.nixpkgs.follows = "nixpkgs"; 21 21 }; 22 + 23 + neovim-nightly-overlay.url = "github:nix-community/neovim-nightly-overlay"; 22 24 }; 23 25 24 26 outputs = { nixpkgs, home-manager, niri, ... }@inputs:
+8 -2
home.nix
··· 1 - { lib, pkgs, config, ... }: let 1 + { inputs, lib, pkgs, config, ... }: let 2 2 username = "hannah"; 3 3 in { 4 4 imports = [ ··· 39 39 swappy.enable = true; 40 40 }; 41 41 42 + programs.neovim = { 43 + enable = true; 44 + package = inputs.neovim-nightly-overlay.packages.${pkgs.system}.default; 45 + }; 46 + 42 47 home = { 43 48 sessionPath = [ 44 49 "$HOME/.local/bin" ··· 70 75 rustc 71 76 72 77 # nvim 73 - neovim 78 + #neovim 74 79 nodejs_24 75 80 gcc 76 81 tree-sitter 77 82 ripgrep 78 83 unzip 79 84 fd 85 + gh 80 86 81 87 # quickshell deps 82 88 quickshell
-4
hosts/mars/configuration.nix
··· 125 125 localNetworkGameTransfers.openFirewall = true; 126 126 }; 127 127 128 - programs.neovim = { 129 - enable = true; 130 - }; 131 - 132 128 fonts = { 133 129 packages = with pkgs; [ 134 130 fira-code