forked from foxora/nix
enjoy having your lights on again...
This commit is contained in:
parent
b7eb55c821
commit
e52854fe58
3 changed files with 11 additions and 15 deletions
16
nixpkgs.nix
16
nixpkgs.nix
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue