Go back to using Plasma stable since building Plasma beta is annoying

This commit is contained in:
SIPB 2025-09-29 11:33:39 -04:00
parent 7d7375d9e0
commit e29fc378aa
3 changed files with 17 additions and 44 deletions

View file

@ -5,24 +5,20 @@
# i.e. nixos-24.11
# Use `nix flake update` to update the flake to the latest revision of the chosen release channel.
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs-plasma-beta.url = "github:K900/nixpkgs/plasma-6.5";
};
outputs =
inputs@{
self,
nixpkgs,
nixpkgs-plasma-beta,
...
}:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
pkgs-plasma-beta = import nixpkgs-plasma-beta { inherit system; };
in
{
nixosConfigurations.chromatic-aberration = nixpkgs.lib.nixosSystem {
modules = [ ./configuration.nix ];
specialArgs.pkgs-plasma-beta = pkgs-plasma-beta;
};
formatter.${system} = pkgs.nixfmt-tree;
};