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
17
flake.lock
17
flake.lock
|
@ -838,6 +838,7 @@
|
|||
"nur": "nur",
|
||||
"plasma-manager": "plasma-manager",
|
||||
"sops-nix": "sops-nix",
|
||||
"stable": "stable",
|
||||
"staging-next": "staging-next"
|
||||
}
|
||||
},
|
||||
|
@ -886,6 +887,22 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"stable": {
|
||||
"locked": {
|
||||
"lastModified": 1735264675,
|
||||
"narHash": "sha256-MgdXpeX2GuJbtlBrH9EdsUeWl/yXEubyvxM1G+yO4Ak=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "d49da4c08359e3c39c4e27c74ac7ac9b70085966",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "NixOS",
|
||||
"ref": "nixos-24.11",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"staging-next": {
|
||||
"locked": {
|
||||
"lastModified": 1735344853,
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
{ pkgs, stablePkgs, ... }:
|
||||
{
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
|
@ -48,7 +48,7 @@
|
|||
];
|
||||
})
|
||||
lunar-client
|
||||
heroic
|
||||
stablePkgs.heroic
|
||||
protonup-qt
|
||||
winetricks
|
||||
celeste64
|
||||
|
|
Loading…
Reference in a new issue