diff options
| author | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-03-29 23:37:55 +0100 |
|---|---|---|
| committer | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-03-29 23:37:55 +0100 |
| commit | b270d32457c2a4f499a17efebac508bac401924b (patch) | |
| tree | 827731ea14f5ca53920f1b081f9b4d2901a68f19 /nixos/hosts | |
| parent | 0807c93d8348b2f537bdbe16886af3e51eb9a90a (diff) | |
wayland fixes
Diffstat (limited to 'nixos/hosts')
| -rw-r--r-- | nixos/hosts/icetea-dispenser/default.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/nixos/hosts/icetea-dispenser/default.nix b/nixos/hosts/icetea-dispenser/default.nix index 802cd5b..a8d4630 100644 --- a/nixos/hosts/icetea-dispenser/default.nix +++ b/nixos/hosts/icetea-dispenser/default.nix @@ -33,7 +33,16 @@ networking.hostName = "icetea-dispenser"; # Define your hostname. networking.firewall.enable = false; + networking.networkmanager.enable = true; # Easiest to use and most distros use this by default. + hardware.bluetooth.enable = true; + hardware.bluetooth.settings = { + General = {Enable = "Source,Sink,Media,Socket";}; + }; + + hardware.bluetooth.powerOnBoot = true; + services.blueman.enable = true; + programs.nix-ld.enable = true; services.printing.enable = true; nixpkgs.config.allowUnfree = true; |
