move to nixos-24.11 to workaround the grub segfault and kde panel bug

kde panel bug: https://bugs.kde.org/show_bug.cgi?id=499914
This commit is contained in:
sadan 2025-03-20 18:21:42 -04:00
parent 6f319a5da1
commit 641c1c1f1f
No known key found for this signature in database
2 changed files with 10 additions and 8 deletions

4
flake.lock generated
View file

@ -622,10 +622,10 @@
"plasma-manager": {
"inputs": {
"home-manager": [
"home-manager-unstable"
"home-manager"
],
"nixpkgs": [
"nixpkgs-unstable"
"nixpkgs"
]
},
"locked": {

View file

@ -27,8 +27,10 @@
};
plasma-manager = {
url = "github:nix-community/plasma-manager";
inputs.nixpkgs.follows = "nixpkgs-unstable";
inputs.home-manager.follows = "home-manager-unstable";
# inputs.nixpkgs.follows = "nixpkgs-unstable";
# inputs.home-manager.follows = "home-manager-unstable";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};
scripts = {
url = "github:sadan4/scripts";
@ -141,10 +143,10 @@
)
];
};
nix-desktop-evo4b5 = nixpkgs-unstable.lib.nixosSystem rec {
nix-desktop-evo4b5 = nixpkgs.lib.nixosSystem rec {
specialArgs = {
inherit inputs;
stable = import nixpkgs {
unstable = import nixpkgs-unstable {
inherit system;
config = {
allowUnfree = true;
@ -157,12 +159,12 @@
{ pkgs, ... }:
{
_module.args = {
unstable = pkgs;
stable = pkgs;
};
}
)
./boxes/desktop/configuration.nix
inputs.home-manager-unstable.nixosModules.default
inputs.home-manager.nixosModules.default
inputs.nix-index-database.nixosModules.nix-index
{ programs.nix-index-database.comma.enable = true; }
];