use experimental snow.flake schema

This commit is contained in:
do butterflies cry? 2026-02-21 16:33:06 +10:00
parent cabb0075e0
commit 9cfbdd2f5a
5 changed files with 44 additions and 52 deletions

View file

@ -4,15 +4,11 @@
system,
...
} @ args: {
nixpkgs.channels = rec {
default = pkgs;
# nixpkgs (stable branch)
pkgs = {
inherit system;
source = inputs.nixpkgs;
nixpkgs.channels = {
default = {
overlays = [
inputs.dobutterfliescry-net.overlays.default
(import ./overlays/default.nix args)
(import ./overlays args)
];
config = {
# allowUnfree = false;
@ -29,13 +25,37 @@
];
};
};
# nixpkgs (stable branch)
# pkgs = {
# inherit system;
# source = inputs.nixpkgs;
# overlays = [
# inputs.dobutterfliescry-net.overlays.default
# (import ./overlays args)
# ];
# config = {
# # allowUnfree = false;
# allowBroken = false;
# allowUnfreePredicate = pkg:
# builtins.elem (lib.getName pkg) [
# "discord"
# "steam"
# "steamcmd"
# "steam-unwrapped"
# "obsidian"
# "gitkraken"
# ];
# };
# };
# nixpkgs-unstable
upkgs = {
inherit system;
source = inputs.nixpkgs-unstable;
overlays = [
inputs.dobutterfliescry-net.overlays.default
(import ./overlays/default.nix args)
(import ./overlays args)
];
config = {
allowUnfree = false;