my nixos/home-manager configuration
1
fork

Configure Feed

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

update carapace with unstable

youn 4f7f5d6d 6a1fa613

+30 -1
+17
flake.lock
··· 213 213 "type": "github" 214 214 } 215 215 }, 216 + "nixpkgs-unstable": { 217 + "locked": { 218 + "lastModified": 1754214453, 219 + "narHash": "sha256-Q/I2xJn/j1wpkGhWkQnm20nShYnG7TI99foDBpXm1SY=", 220 + "owner": "nixos", 221 + "repo": "nixpkgs", 222 + "rev": "5b09dc45f24cf32316283e62aec81ffee3c3e376", 223 + "type": "github" 224 + }, 225 + "original": { 226 + "owner": "nixos", 227 + "ref": "nixos-unstable", 228 + "repo": "nixpkgs", 229 + "type": "github" 230 + } 231 + }, 216 232 "nur": { 217 233 "inputs": { 218 234 "flake-parts": "flake-parts", ··· 242 258 "home-manager": "home-manager_2", 243 259 "nixos-hardware": "nixos-hardware", 244 260 "nixpkgs": "nixpkgs", 261 + "nixpkgs-unstable": "nixpkgs-unstable", 245 262 "nixpkgs-graalvm-21": "nixpkgs-graalvm-21", 246 263 "nur": "nur", 247 264 "zen-browser": "zen-browser"
+7
flake.nix
··· 1 1 { 2 2 inputs = { 3 3 nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05"; 4 + nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable"; 4 5 nixpkgs-graalvm-21.url = "github:nixos/nixpkgs/ed4db9c6c75079ff3570a9e3eb6806c8f692dc26"; 5 6 6 7 nixos-hardware.url = "github:nixos/nixos-hardware/master"; ··· 53 54 allowUnfree = true; 54 55 }; 55 56 overlays = [ 57 + (final: prev: { 58 + unstable = import inputs.nixpkgs-unstable { 59 + inherit system; 60 + inherit config; 61 + }; 62 + }) 56 63 nur.overlays.default 57 64 ]; 58 65
+6 -1
home-manager/common.nix
··· 52 52 neovim.enable = true; 53 53 nushell.enable = true; 54 54 sccache.enable = true; 55 - carapace.enable = true; 55 + carapace = { 56 + enable = true; 57 + # TODO: remove when https://github.com/nix-community/home-manager/issues/7517 58 + # is resolved 59 + package = pkgs.unstable.carapace; 60 + }; 56 61 starship.enable = true; 57 62 nix-your-shell.enable = true; 58 63 };