update channels + follow unstable
This commit is contained in:
parent
9d67e27e60
commit
ab59f661fc
19
flake.nix
19
flake.nix
|
@ -2,19 +2,20 @@
|
||||||
description = "NixOS + Home Manager configuration with flakes";
|
description = "NixOS + Home Manager configuration with flakes";
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
# Nixpkgs
|
# Nixpkgs branches
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-22.11";
|
master.url = "github:nixos/nixpkgs/master";
|
||||||
# You can access packages and modules from different nixpkgs revs
|
stable.url = "github:nixos/nixpkgs/nixos-22.11";
|
||||||
# at the same time. Here's an working example:
|
nixos-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
||||||
# Also see the 'unstable-packages' overlay at 'overlays/default.nix'.
|
|
||||||
|
|
||||||
# Home manager
|
# Home manager
|
||||||
home-manager.url = "github:nix-community/home-manager";
|
home-manager.url = "github:nix-community/home-manager/master";
|
||||||
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
|
|
||||||
# Add any other flake you might need
|
# Add any other flake you might need
|
||||||
nixpkgs-f2k.url = "github:fortuneteller2k/nixpkgs-f2k";
|
nixpkgs-f2k.url = "github:fortuneteller2k/nixpkgs-f2k";
|
||||||
|
|
||||||
|
# Default branch
|
||||||
|
nixpkgs.follows = "nixos-unstable";
|
||||||
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs, home-manager, ... }@inputs:
|
outputs = { self, nixpkgs, home-manager, ... }@inputs:
|
||||||
|
|
Loading…
Reference in a new issue