This commit is contained in:
iFargle 2023-07-02 19:16:28 +09:00
parent cd59f23627
commit cf985732d0

View file

@ -5,10 +5,8 @@
inputs = { inputs = {
# NixOS packages # NixOS packages
nixpkgs.url = "nixpkgs/nixos-23.05"; stable-nixpkgs.url = "nixpkgs/nixos-23.05";
unstable-nixpkgs.url = "nixpkgs/nixos-unstable";
# Bleeding edge nixpkgs
unstable.url = "nixpkgs/nixos-unstable";
# Manage dotfiles in a home directory # Manage dotfiles in a home directory
home-manager.url = "github:nix-community/home-manager/release-23.05"; home-manager.url = "github:nix-community/home-manager/release-23.05";
@ -36,12 +34,12 @@
hostname = "nixos-laptop"; hostname = "nixos-laptop";
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = import nixpkgs { pkgs = import stable-nixpkgs {
inherit system; inherit system;
config = { allowUnfree = true; }; config = { allowUnfree = true; };
}; };
unstable = import unstable { unstable = import unstable-nixpkgs {
inherit system; inherit system;
config = { allowUnfree = true; }; config = { allowUnfree = true; };
}; };