Signed-off-by: Alex Stan <alex.stan.2010@proton.me>
This commit is contained in:
Alex Stan 2023-11-07 10:21:12 +02:00
parent 55810c1f9e
commit 12bb4d24ab

View file

@ -23,11 +23,18 @@ in {
inputs.nix-index-database.hmModules.nix-index inputs.nix-index-database.hmModules.nix-index
]; ];
# Allow unfree packages # Allow unfree packages
nixpkgs.config.allowUnfree = true; nixpkgs.config = {
nixpkgs.config.allowUnfreePredicate = (pkg: true); allowUnfree = true;
nixpkgs.config.permittedInsecurePackages = [ allowUnfreePredicate = (pkg: true);
"electron-21.4.0" 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 = { nixpkgs-master.config = {
allowUnfree = true; allowUnfree = true;
@ -167,12 +174,14 @@ in {
nmap nmap
browsh browsh
beeper # huge thanks to the true chad that packaged this beeper # huge thanks to the true chad that packaged this
halloy
mtpaint mtpaint
fluent-reader fluent-reader
discord discord
f1viewer f1viewer
vlc vlc
wineWowPackages.wayland wineWowPackages.wayland
blender
]; ];
}; };