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",
|
"nur": "nur",
|
||||||
"plasma-manager": "plasma-manager",
|
"plasma-manager": "plasma-manager",
|
||||||
"sops-nix": "sops-nix",
|
"sops-nix": "sops-nix",
|
||||||
|
"stable": "stable",
|
||||||
"staging-next": "staging-next"
|
"staging-next": "staging-next"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -886,6 +887,22 @@
|
||||||
"type": "github"
|
"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": {
|
"staging-next": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1735344853,
|
"lastModified": 1735344853,
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
description = "System Configuration @ cswimr 2024";
|
description = "System Configuration @ cswimr 2024";
|
||||||
inputs = {
|
inputs = {
|
||||||
|
stable.url = "github:NixOS/nixpkgs/nixos-24.11";
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||||
staging-next.url = "github:NixOS/nixpkgs/staging-next";
|
staging-next.url = "github:NixOS/nixpkgs/staging-next";
|
||||||
home-manager = {
|
home-manager = {
|
||||||
|
@ -63,6 +64,10 @@
|
||||||
];
|
];
|
||||||
config.allowUnfree = true;
|
config.allowUnfree = true;
|
||||||
};
|
};
|
||||||
|
stablePkgs = import inputs.stable {
|
||||||
|
inherit system;
|
||||||
|
config.allowUnfree = true;
|
||||||
|
};
|
||||||
stagingNextPkgs = import inputs.staging-next {
|
stagingNextPkgs = import inputs.staging-next {
|
||||||
inherit system;
|
inherit system;
|
||||||
config.allowUnfree = true;
|
config.allowUnfree = true;
|
||||||
|
@ -75,6 +80,7 @@
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
|
inherit stablePkgs;
|
||||||
inherit stagingNextPkgs;
|
inherit stagingNextPkgs;
|
||||||
system = system;
|
system = system;
|
||||||
hostname = "eclipse";
|
hostname = "eclipse";
|
||||||
|
@ -140,6 +146,7 @@
|
||||||
extraSpecialArgs = {
|
extraSpecialArgs = {
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
|
inherit stablePkgs;
|
||||||
inherit stagingNextPkgs;
|
inherit stagingNextPkgs;
|
||||||
system = system;
|
system = system;
|
||||||
hostname = "eclipse";
|
hostname = "eclipse";
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, stablePkgs, ... }:
|
||||||
{
|
{
|
||||||
programs.steam = {
|
programs.steam = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -48,7 +48,7 @@
|
||||||
];
|
];
|
||||||
})
|
})
|
||||||
lunar-client
|
lunar-client
|
||||||
heroic
|
stablePkgs.heroic
|
||||||
protonup-qt
|
protonup-qt
|
||||||
winetricks
|
winetricks
|
||||||
celeste64
|
celeste64
|
||||||
|
|
Loading…
Reference in a new issue