forked from dea/dea-files
cerulean
This commit is contained in:
parent
ac95603fc4
commit
f7de9f7a23
42 changed files with 1061 additions and 445 deletions
32
nixpkgs.nix
Normal file
32
nixpkgs.nix
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
inputs,
|
||||
system,
|
||||
...
|
||||
} @ args: {
|
||||
nixpkgs.channels = {
|
||||
default = {
|
||||
inherit system;
|
||||
overlays = [
|
||||
(import ./overlays args)
|
||||
];
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
allowBroken = false;
|
||||
};
|
||||
};
|
||||
|
||||
# nixpkgs-unstable (upkgs)
|
||||
upkgs = {
|
||||
inherit system;
|
||||
source = inputs.nixpkgs-unstable;
|
||||
overlays = [
|
||||
inputs.millennium.overlays.default
|
||||
(import ./overlays args)
|
||||
];
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
allowBroken = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue