From b6ba49fce0bd3c221e3522bd4631b6ebb2b691bd Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Mon, 3 Oct 2022 13:55:09 +0200 Subject: [PATCH] Remove unfree overlay: we always use unfree anyway --- home/common-linux.nix | 2 +- home/common.nix | 2 +- nki-home/hardware-configuration.nix | 2 +- overlay.nix | 1 - 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/home/common-linux.nix b/home/common-linux.nix index a5bb4db..162db04 100644 --- a/home/common-linux.nix +++ b/home/common-linux.nix @@ -6,7 +6,7 @@ with lib; { ]; config = (mkIf (strings.hasSuffix "linux" pkgs.system) { home.packages = with pkgs; [ - unfree.vivaldi + vivaldi psmisc # killall and friends pinentry-gnome diff --git a/home/common.nix b/home/common.nix index 6c02723..b1c53e2 100644 --- a/home/common.nix +++ b/home/common.nix @@ -58,7 +58,7 @@ htop-vim ## To do tunneling with cloudflare - pkgs.unfree.cloudflared + pkgs.cloudflared # Databases postgresql diff --git a/nki-home/hardware-configuration.nix b/nki-home/hardware-configuration.nix index 1946a6e..cadcd1b 100644 --- a/nki-home/hardware-configuration.nix +++ b/nki-home/hardware-configuration.nix @@ -37,5 +37,5 @@ hardware.opengl.enable = true; # bluetooth usb - hardware.firmware = [ pkgs.unfree.rtl8761b-firmware ]; + hardware.firmware = [ pkgs.rtl8761b-firmware ]; } diff --git a/overlay.nix b/overlay.nix index a3e6bb6..29b3c96 100644 --- a/overlay.nix +++ b/overlay.nix @@ -2,7 +2,6 @@ let overlay-unstable = final: prev: { unstable = import nixpkgs-unstable { config.allowUnfree = true; system = prev.system; }; - unfree = import nixpkgs { config.allowUnfree = true; system = prev.system; }; x86 = import nixpkgs-unstable { system = prev.system; config.allowUnsupportedSystem = true; }; }; overlay-needs-unstable = final: prev: {