diff options
author | Preston Pan <preston@nullring.xyz> | 2024-09-22 21:17:32 -0700 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2024-09-22 21:17:32 -0700 |
commit | f03eb696451dc63ae75a5c20fc356b5aa46b6dd9 (patch) | |
tree | 4cee1bc0ff090ee9a200241b80ee881aa4c9b8c1 /flake.nix | |
parent | 3fab894b0b6ffd4edbd61b294ba0d7a4fb5176b1 (diff) |
fix configuration to use stable; this is because unstable will break the build process of packages
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,10 +3,10 @@ inputs = { nixpkgs = { - url = "github:nixos/nixpkgs/nixos-unstable"; + url = "github:nixos/nixpkgs/nixos-24.05"; }; home-manager = { - url = "github:nix-community/home-manager/release-23.11"; + url = "github:nix-community/home-manager/release-24.05"; inputs.nixpkgs.follows = "nixpkgs"; }; |