mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
fix insecure package warning
This commit is contained in:
parent
746e538584
commit
21f1f79c2f
@ -19,7 +19,6 @@
|
|||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
inherit system;
|
inherit system;
|
||||||
config.allowUnfree = true;
|
|
||||||
};
|
};
|
||||||
lib = nixpkgs.lib;
|
lib = nixpkgs.lib;
|
||||||
user = "tstarr";
|
user = "tstarr";
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
|
|
||||||
# Add non-free packages
|
# Add non-free packages
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
nixpkgs.config.permittedInsecurePackages = [ "electron-25.9.0" "openssl-1.1.1w" ];
|
||||||
nixpkgs.overlays = import ../../lib/overlays.nix;
|
nixpkgs.overlays = import ../../lib/overlays.nix;
|
||||||
|
|
||||||
# Hardware options
|
# Hardware options
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
|
|
||||||
# Add non-free packages
|
# Add non-free packages
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
nixpkgs.config.permittedInsecurePackages = [ "electron-25.9.0" "openssl-1.1.1w" ];
|
||||||
nixpkgs.overlays = import ../../lib/overlays.nix;
|
nixpkgs.overlays = import ../../lib/overlays.nix;
|
||||||
|
|
||||||
# Use zen kernel
|
# Use zen kernel
|
||||||
|
@ -25,6 +25,7 @@
|
|||||||
|
|
||||||
# Add non-free packages
|
# Add non-free packages
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
nixpkgs.config.permittedInsecurePackages = [ "openssl-1.1.1w" ];
|
||||||
nixpkgs.overlays = import ../../lib/overlays.nix;
|
nixpkgs.overlays = import ../../lib/overlays.nix;
|
||||||
|
|
||||||
# Use normal kernel
|
# Use normal kernel
|
||||||
|
@ -5,9 +5,6 @@ let
|
|||||||
in {
|
in {
|
||||||
options.modules.devel.notes.enable = lib.mkEnableOption "notes";
|
options.modules.devel.notes.enable = lib.mkEnableOption "notes";
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
nixpkgs.config.permittedInsecurePackages = [
|
|
||||||
"electron-25.9.0"
|
|
||||||
];
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
pandoc
|
pandoc
|
||||||
gollum
|
gollum
|
||||||
|
Loading…
x
Reference in New Issue
Block a user