remove all unstable programs

This commit is contained in:
Felix Buehler 2022-05-29 18:27:54 +02:00
parent a4f4996fde
commit d428ae6ab7
4 changed files with 5 additions and 14 deletions

View file

@ -1,7 +1,4 @@
{ config, lib, pkgs, ... }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
{
hardware.bluetooth = {
enable = true;
@ -14,6 +11,6 @@ in
};
services.blueman.enable = true;
environment.systemPackages = with pkgs; [
unstable.sony-headphones-client
sony-headphones-client
];
}