because why would you ever backport a change

This commit is contained in:
sadan 2025-02-23 22:45:40 -05:00
parent e083a6680d
commit f9062cfec6
No known key found for this signature in database

View file

@ -86,11 +86,11 @@
};
nixosConfigurations = {
nixd = nixpkgs.lib.nixosSystem { };
serverpc = nixpkgs.lib.nixosSystem rec {
serverpc = nixpkgs-unstable.lib.nixosSystem rec {
system = "x86_64-linux";
specialArgs = {
inherit inputs;
unstable = import nixpkgs-unstable {
stable = import nixpkgs {
inherit system;
config = {
allowUnfree = true;
@ -102,7 +102,7 @@
{ pkgs, ... }:
{
_module.args = {
stable = pkgs;
unstable = pkgs;
};
}
)