Remove unfree overlay: we always use unfree anyway
This commit is contained in:
parent
f022d303b5
commit
b6ba49fce0
|
@ -6,7 +6,7 @@ with lib; {
|
||||||
];
|
];
|
||||||
config = (mkIf (strings.hasSuffix "linux" pkgs.system) {
|
config = (mkIf (strings.hasSuffix "linux" pkgs.system) {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
unfree.vivaldi
|
vivaldi
|
||||||
psmisc # killall and friends
|
psmisc # killall and friends
|
||||||
|
|
||||||
pinentry-gnome
|
pinentry-gnome
|
||||||
|
|
|
@ -58,7 +58,7 @@
|
||||||
htop-vim
|
htop-vim
|
||||||
|
|
||||||
## To do tunneling with cloudflare
|
## To do tunneling with cloudflare
|
||||||
pkgs.unfree.cloudflared
|
pkgs.cloudflared
|
||||||
|
|
||||||
# Databases
|
# Databases
|
||||||
postgresql
|
postgresql
|
||||||
|
|
|
@ -37,5 +37,5 @@
|
||||||
hardware.opengl.enable = true;
|
hardware.opengl.enable = true;
|
||||||
|
|
||||||
# bluetooth usb
|
# bluetooth usb
|
||||||
hardware.firmware = [ pkgs.unfree.rtl8761b-firmware ];
|
hardware.firmware = [ pkgs.rtl8761b-firmware ];
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
let
|
let
|
||||||
overlay-unstable = final: prev: {
|
overlay-unstable = final: prev: {
|
||||||
unstable = import nixpkgs-unstable { config.allowUnfree = true; system = prev.system; };
|
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; };
|
x86 = import nixpkgs-unstable { system = prev.system; config.allowUnsupportedSystem = true; };
|
||||||
};
|
};
|
||||||
overlay-needs-unstable = final: prev: {
|
overlay-needs-unstable = final: prev: {
|
||||||
|
|
Loading…
Reference in a new issue