2411
This commit is contained in:
parent
90b4d59445
commit
41a5c6bbca
17
flake.nix
17
flake.nix
|
@ -5,6 +5,7 @@
|
||||||
# https://github.com/nixos/nixpkgs
|
# https://github.com/nixos/nixpkgs
|
||||||
nixpkgs-test.url = "github:NixOS/nixpkgs/refs/pull/295155/head"; # for testing
|
nixpkgs-test.url = "github:NixOS/nixpkgs/refs/pull/295155/head"; # for testing
|
||||||
nixpkgs-edge.url = "github:NixOS/nixpkgs/nixos-unstable"; # "edge" is four letters
|
nixpkgs-edge.url = "github:NixOS/nixpkgs/nixos-unstable"; # "edge" is four letters
|
||||||
|
nixpkgs-2411.url = "github:NixOS/nixpkgs/nixos-24.11";
|
||||||
nixpkgs-2405.url = "github:NixOS/nixpkgs/nixos-24.05";
|
nixpkgs-2405.url = "github:NixOS/nixpkgs/nixos-24.05";
|
||||||
nixpkgs-2311.url = "github:NixOS/nixpkgs/nixos-23.11";
|
nixpkgs-2311.url = "github:NixOS/nixpkgs/nixos-23.11";
|
||||||
nixpkgs-2305.url = "github:NixOS/nixpkgs/nixos-23.05";
|
nixpkgs-2305.url = "github:NixOS/nixpkgs/nixos-23.05";
|
||||||
|
@ -20,6 +21,8 @@
|
||||||
# https://github.com/nix-community/home-manager
|
# https://github.com/nix-community/home-manager
|
||||||
home-manager-edge.url = "github:nix-community/home-manager/master";
|
home-manager-edge.url = "github:nix-community/home-manager/master";
|
||||||
home-manager-edge.inputs.nixpkgs.follows = "nixpkgs-edge";
|
home-manager-edge.inputs.nixpkgs.follows = "nixpkgs-edge";
|
||||||
|
home-manager-2411.url = "github:nix-community/home-manager/release-24.11";
|
||||||
|
home-manager-2411.inputs.nixpkgs.follows = "nixpkgs-2405";
|
||||||
home-manager-2405.url = "github:nix-community/home-manager/release-24.05";
|
home-manager-2405.url = "github:nix-community/home-manager/release-24.05";
|
||||||
home-manager-2405.inputs.nixpkgs.follows = "nixpkgs-2405";
|
home-manager-2405.inputs.nixpkgs.follows = "nixpkgs-2405";
|
||||||
home-manager-2311.url = "github:nix-community/home-manager/release-23.11";
|
home-manager-2311.url = "github:nix-community/home-manager/release-23.11";
|
||||||
|
@ -49,16 +52,14 @@
|
||||||
# https://github.com/Mic92/sops-nix
|
# https://github.com/Mic92/sops-nix
|
||||||
sops-nix-edge.url = "github:Mic92/sops-nix";
|
sops-nix-edge.url = "github:Mic92/sops-nix";
|
||||||
sops-nix-edge.inputs.nixpkgs.follows = "nixpkgs-edge";
|
sops-nix-edge.inputs.nixpkgs.follows = "nixpkgs-edge";
|
||||||
sops-nix-edge.inputs.nixpkgs-stable.follows = "nixpkgs-2405";
|
sops-nix-2411.url = "github:Mic92/sops-nix";
|
||||||
|
sops-nix-2411.inputs.nixpkgs.follows = "nixpkgs-2411";
|
||||||
sops-nix-2405.url = "github:Mic92/sops-nix";
|
sops-nix-2405.url = "github:Mic92/sops-nix";
|
||||||
sops-nix-2405.inputs.nixpkgs.follows = "nixpkgs-2405";
|
sops-nix-2405.inputs.nixpkgs.follows = "nixpkgs-2405";
|
||||||
sops-nix-2405.inputs.nixpkgs-stable.follows = "nixpkgs-2405";
|
|
||||||
sops-nix-2311.url = "github:Mic92/sops-nix";
|
sops-nix-2311.url = "github:Mic92/sops-nix";
|
||||||
sops-nix-2311.inputs.nixpkgs.follows = "nixpkgs-2311";
|
sops-nix-2311.inputs.nixpkgs.follows = "nixpkgs-2311";
|
||||||
sops-nix-2311.inputs.nixpkgs-stable.follows = "nixpkgs-2311";
|
|
||||||
sops-nix-2305.url = "github:Mic92/sops-nix";
|
sops-nix-2305.url = "github:Mic92/sops-nix";
|
||||||
sops-nix-2305.inputs.nixpkgs.follows = "nixpkgs-2305";
|
sops-nix-2305.inputs.nixpkgs.follows = "nixpkgs-2305";
|
||||||
sops-nix-2305.inputs.nixpkgs-stable.follows = "nixpkgs-2305";
|
|
||||||
|
|
||||||
## https://github.com/h7x4/maunium-stickerpicker-nix
|
## https://github.com/h7x4/maunium-stickerpicker-nix
|
||||||
#maunium-stickerpicker-nix.url = "github:h7x4/maunium-stickerpicker-nix";
|
#maunium-stickerpicker-nix.url = "github:h7x4/maunium-stickerpicker-nix";
|
||||||
|
@ -112,9 +113,15 @@
|
||||||
home-manager = inputs'.home-manager-edge;
|
home-manager = inputs'.home-manager-edge;
|
||||||
sops-nix = inputs'.sops-nix-edge;
|
sops-nix = inputs'.sops-nix-edge;
|
||||||
};
|
};
|
||||||
|
inputs-2411 = inputs' // {
|
||||||
|
nixpkgs = inputs'.nixpkgs-2411;
|
||||||
|
unstable = inputs'.nixpkgs-edge;
|
||||||
|
home-manager = inputs'.home-manager-2411;
|
||||||
|
sops-nix = inputs'.sops-nix-2411;
|
||||||
|
};
|
||||||
inputs-2405 = inputs' // {
|
inputs-2405 = inputs' // {
|
||||||
nixpkgs = inputs'.nixpkgs-2405;
|
nixpkgs = inputs'.nixpkgs-2405;
|
||||||
unstable = inputs'.nixpkgs-edge;
|
unstable = inputs'.nixpkgs-2411;
|
||||||
home-manager = inputs'.home-manager-2405;
|
home-manager = inputs'.home-manager-2405;
|
||||||
sops-nix = inputs'.sops-nix-2405;
|
sops-nix = inputs'.sops-nix-2405;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue