removed nixpkgs-stable

This commit is contained in:
willifan 2024-11-02 13:22:43 +01:00
parent 3ef26e3276
commit d8df4f3de1
3 changed files with 5 additions and 30 deletions

View file

@ -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;
};