diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-12-03 22:39:30 +0200 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-12-03 22:39:30 +0200 |
commit | 05e141db88b9c30a3c486e8a66fea1b13cfa48b1 (patch) | |
tree | 15dc11af5f469d4e61dd041ff521bde0d2ef727a /nixos/configuration.nix | |
parent | da68374b71c29fe38dacd9e7736f9712ee2baa29 (diff) | |
download | nixos-configuration-05e141db88b9c30a3c486e8a66fea1b13cfa48b1.tar.gz nixos-configuration-05e141db88b9c30a3c486e8a66fea1b13cfa48b1.tar.bz2 nixos-configuration-05e141db88b9c30a3c486e8a66fea1b13cfa48b1.zip |
feat: various nixos fixes and improvements
bluetooth: trying to disable handsfree mode (wip)
fonts: conform to new font pkg naming
Diffstat (limited to 'nixos/configuration.nix')
-rw-r--r-- | nixos/configuration.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 57244ae..6d6fe6f 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -65,11 +65,7 @@ hardware.bluetooth = { enable = true; powerOnBoot = true; - settings = { - General = { - Disable = "Headset"; - }; - }; + settings = {General = {Disable = "Handsfree,Headset";};}; }; specialisation = { in-china.configuration = { @@ -116,6 +112,7 @@ libsForQt5.qt5.qtquickcontrols2 libsForQt5.qt5.qtgraphicaleffects blender + trash-cli #inputs.hyprswitch.packages.x86_64-linux.default ]; # turned off because timedatectl doesn't like it @@ -144,7 +141,10 @@ #}; nixpkgs = { overlays = []; - config = {allowUnfree = true;}; + config = { + allowUnfree = true; + permittedInsecurePackages = ["dotnet-core-combined"]; + }; }; nix = let |