1
0
Fork 0
mirror of https://github.com/ryanccn/flake.git synced 2026-01-27 04:06:28 +01:00

chore: update

This commit is contained in:
Ryan Cao 2025-12-27 18:10:33 +08:00
parent 5e189a590f
commit 17cd6aed1d
Signed by: ryanccn
GPG key ID: F605AB4AF937D5D0
8 changed files with 126 additions and 109 deletions

View file

@ -2,7 +2,12 @@
#
# SPDX-License-Identifier: Apache-2.0
{ pkgs, lib, ... }:
{
pkgs,
lib,
config,
...
}:
{
nix.package = pkgs.nixVersions.latest;
@ -44,6 +49,12 @@
hostPlatform = "aarch64-darwin";
# config.allowUnfree = true;
config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ ];
overlays = [
(_: prev: {
comma = prev.comma.override { nix = config.nix.package; };
})
];
};
environment.variables = {