test
This commit is contained in:
parent
cd59f23627
commit
cf985732d0
1 changed files with 4 additions and 6 deletions
10
flake.nix
10
flake.nix
|
@ -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; };
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue