1
0
Fork 0
forked from foxora/nix

enjoy having your lights on again...

This commit is contained in:
do butterflies cry? 2026-02-18 20:26:09 +10:00
parent b7eb55c821
commit e52854fe58
3 changed files with 11 additions and 15 deletions

View file

@ -1,14 +1,12 @@
{
inputs,
system,
...
} @ args: {
nixpkgs.channels = rec {
default = pkgs;
{inputs, ...} @ args: {
nixpkgs.channels = {
default = {
overlays = [(import ./overlays.nix args)];
config.allowUnfree = true;
};
# nixpkgs
pkgs = {
inherit system;
source = inputs.nixpkgs;
overlays = [
(import ./overlays.nix args)
@ -18,7 +16,6 @@
# nixpkgs-unstable
upkgs = {
inherit system;
source = inputs.nixpkgs-unstable;
overlays = with inputs; [
cachyos.overlays.pinned
@ -32,7 +29,6 @@
# nixpkgs-staging
spkgs = {
inherit system;
source = inputs.nixpkgs-staging;
overlays = [
(import ./overlays.nix args)