update dell-laptop

This commit is contained in:
Dmitriy Kholkin 2023-08-05 07:42:57 +03:00
parent eb5c560893
commit f8bbd7e2eb
3 changed files with 6 additions and 3 deletions

View File

@ -245,6 +245,7 @@
in builtins.mapAttrs mkDeploy { in builtins.mapAttrs mkDeploy {
NixOS-VPS = { hostname = "wg.ataraxiadev.com"; }; NixOS-VPS = { hostname = "wg.ataraxiadev.com"; };
Home-Hypervisor = { hostname = "192.168.0.10"; }; Home-Hypervisor = { hostname = "192.168.0.10"; };
Dell-Laptop = { hostname = "dell-laptop"; };
}; };
checks = builtins.mapAttrs (system: deployLib: deployLib.deployChecks self.deploy) inputs.deploy-rs.lib; checks = builtins.mapAttrs (system: deployLib: deployLib.deployChecks self.deploy) inputs.deploy-rs.lib;

View File

@ -3,6 +3,8 @@
./boot.nix ./boot.nix
./hardware-configuration.nix ./hardware-configuration.nix
nixosRoles.desktop nixosRoles.desktop
nixosProfiles.bluetooth
]; ];
deviceSpecific.devInfo = { deviceSpecific.devInfo = {
@ -53,4 +55,4 @@
home.stateVersion = "23.05"; home.stateVersion = "23.05";
}; };
system.stateVersion = "23.05"; system.stateVersion = "23.05";
} }

View File

@ -1,6 +1,6 @@
{ config, pkgs, lib, ... }: { { config, pkgs, lib, ... }: {
config = lib.mkIf (!config.deviceSpecific.isServer) { config = lib.mkIf (!config.deviceSpecific.isServer) {
services.blueman.enable = !isServer; services.blueman.enable = true;
hardware.bluetooth = { hardware.bluetooth = {
enable = true; enable = true;
# package = pkgs.bluez; # package = pkgs.bluez;
@ -20,4 +20,4 @@
"hpd" = "bluetoothctl disconnect ${headphones}"; "hpd" = "bluetoothctl disconnect ${headphones}";
}; };
}; };
} }