downgrade heroic
to the version in nixos-24.11
This commit is contained in:
parent
a75a39d4e2
commit
8b0a736d21
3 changed files with 26 additions and 2 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue