Remote builds using boss-baby, Plasma beta, enable btrfs zstd compression

This commit is contained in:
SIPB 2025-09-25 13:56:44 -04:00
parent 7c52d6e55c
commit 6d16429319
3 changed files with 57 additions and 5 deletions

View file

@ -5,16 +5,24 @@
# 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, ... }:
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;
};