removed nixpkgs-stable
This commit is contained in:
parent
3ef26e3276
commit
d8df4f3de1
3 changed files with 5 additions and 30 deletions
17
flake.nix
17
flake.nix
|
@ -4,7 +4,6 @@
|
|||
inputs = {
|
||||
|
||||
# NixOS official package source, using the nixos-23.11 branch here
|
||||
nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-24.05";
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
nixos-hardware.url = "github:nixos/nixos-hardware";
|
||||
|
||||
|
@ -40,11 +39,9 @@
|
|||
|
||||
};
|
||||
|
||||
outputs = { nixpkgs, nixpkgs-stable, ... }@attrs:
|
||||
outputs = { nixpkgs, ... }@attrs:
|
||||
let
|
||||
lib = nixpkgs.lib;
|
||||
pkgs = import nixpkgs { system = "x86_64-linux"; config = { allowUnfree = true; }; };
|
||||
pkgs-stable = import nixpkgs-stable { system = "x86_64-linux"; config = { allowUnfree = true; }; };
|
||||
in
|
||||
{
|
||||
nixosConfigurations = {
|
||||
|
@ -57,9 +54,7 @@
|
|||
specialArgs = {
|
||||
hostname = "Lenni";
|
||||
type = "desktop";
|
||||
inherit pkgs;
|
||||
inherit pkgs-stable;
|
||||
inherit attrs;
|
||||
inherit attrs;
|
||||
inherit system;
|
||||
};
|
||||
|
||||
|
@ -87,9 +82,7 @@
|
|||
specialArgs = {
|
||||
hostname = "Puenktchen";
|
||||
type = "desktop";
|
||||
inherit pkgs;
|
||||
inherit pkgs-stable;
|
||||
inherit attrs;
|
||||
inherit attrs;
|
||||
inherit system;
|
||||
};
|
||||
|
||||
|
@ -120,9 +113,7 @@
|
|||
specialArgs = {
|
||||
hostname = "Anton";
|
||||
type = "server";
|
||||
inherit pkgs;
|
||||
inherit pkgs-stable;
|
||||
inherit attrs;
|
||||
inherit attrs;
|
||||
inherit system;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue