downgrade heroic to the version in nixos-24.11

This commit is contained in:
cswimr 2024-12-28 09:32:25 -05:00
parent a75a39d4e2
commit 8b0a736d21
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087
3 changed files with 26 additions and 2 deletions

View file

@ -1,6 +1,7 @@
{
description = "System Configuration @ cswimr 2024";
inputs = {
stable.url = "github:NixOS/nixpkgs/nixos-24.11";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
staging-next.url = "github:NixOS/nixpkgs/staging-next";
home-manager = {
@ -63,6 +64,10 @@
];
config.allowUnfree = true;
};
stablePkgs = import inputs.stable {
inherit system;
config.allowUnfree = true;
};
stagingNextPkgs = import inputs.staging-next {
inherit system;
config.allowUnfree = true;
@ -75,6 +80,7 @@
specialArgs = {
inherit inputs;
inherit pkgs;
inherit stablePkgs;
inherit stagingNextPkgs;
system = system;
hostname = "eclipse";
@ -140,6 +146,7 @@
extraSpecialArgs = {
inherit inputs;
inherit pkgs;
inherit stablePkgs;
inherit stagingNextPkgs;
system = system;
hostname = "eclipse";