mirror of
https://codeberg.org/ultra/nixos-dotfiles.git
synced 2024-11-22 13:53:09 +02:00
stuff
Signed-off-by: Alex Stan <alex.stan.2010@proton.me>
This commit is contained in:
parent
55810c1f9e
commit
12bb4d24ab
1 changed files with 14 additions and 5 deletions
|
@ -23,11 +23,18 @@ in {
|
|||
inputs.nix-index-database.hmModules.nix-index
|
||||
];
|
||||
# Allow unfree packages
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
nixpkgs.config.allowUnfreePredicate = (pkg: true);
|
||||
nixpkgs.config.permittedInsecurePackages = [
|
||||
nixpkgs.config = {
|
||||
allowUnfree = true;
|
||||
allowUnfreePredicate = (pkg: true);
|
||||
permittedInsecurePackages = [
|
||||
"electron-21.4.0"
|
||||
];
|
||||
packageOverrides = pkgs: {
|
||||
nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") {
|
||||
inherit pkgs;
|
||||
};
|
||||
};
|
||||
};
|
||||
/*
|
||||
nixpkgs-master.config = {
|
||||
allowUnfree = true;
|
||||
|
@ -167,12 +174,14 @@ in {
|
|||
nmap
|
||||
browsh
|
||||
beeper # huge thanks to the true chad that packaged this
|
||||
halloy
|
||||
mtpaint
|
||||
fluent-reader
|
||||
discord
|
||||
f1viewer
|
||||
vlc
|
||||
wineWowPackages.wayland
|
||||
blender
|
||||
];
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue