From 91f5518613fc9545e2a7362a082bde6795713db4 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Tue, 6 Feb 2024 09:22:02 -0700 Subject: [PATCH] flake: move to unstable --- flake.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 0ee7dfb..0b2c216 100644 --- a/flake.nix +++ b/flake.nix @@ -2,14 +2,15 @@ description = "Generic System Flake file"; inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/release-23.11"; + # nixpkgs.url = "github:NixOS/nixpkgs/release-23.11"; + nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable"; disko = { url = github:nix-community/disko; - inputs.nixpkgs.follows = "nixpkgs"; + inputs.nixpkgs.follows = "nixpkgs-unstable"; }; home-manager = { - url = "github:nix-community/home-manager/release-23.11"; - inputs.nixpkgs.follows = "nixpkgs"; # Use system packages list where available + url = "github:nix-community/home-manager"; + inputs.nixpkgs.follows = "nixpkgs-unstable"; }; };