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 = {
|
||||
# NixOS packages
|
||||
nixpkgs.url = "nixpkgs/nixos-23.05";
|
||||
|
||||
# Bleeding edge nixpkgs
|
||||
unstable.url = "nixpkgs/nixos-unstable";
|
||||
stable-nixpkgs.url = "nixpkgs/nixos-23.05";
|
||||
unstable-nixpkgs.url = "nixpkgs/nixos-unstable";
|
||||
|
||||
# Manage dotfiles in a home directory
|
||||
home-manager.url = "github:nix-community/home-manager/release-23.05";
|
||||
|
@ -36,12 +34,12 @@
|
|||
hostname = "nixos-laptop";
|
||||
system = "x86_64-linux";
|
||||
|
||||
pkgs = import nixpkgs {
|
||||
pkgs = import stable-nixpkgs {
|
||||
inherit system;
|
||||
config = { allowUnfree = true; };
|
||||
};
|
||||
|
||||
unstable = import unstable {
|
||||
unstable = import unstable-nixpkgs {
|
||||
inherit system;
|
||||
config = { allowUnfree = true; };
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue