Added blueman for mouse control
This commit is contained in:
parent
5d698370c0
commit
cd23139014
22
modules/applications/blueman.nix
Normal file
22
modules/applications/blueman.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
let
|
||||||
|
cfg = config.this.application.blueman;
|
||||||
|
graphical = config.this.graphical;
|
||||||
|
in with lib; {
|
||||||
|
options = {
|
||||||
|
this.application.blueman.enable = mkOption {
|
||||||
|
default = graphical.enable;
|
||||||
|
type = with types; bool;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
hardware.bluetooth.enable = true;
|
||||||
|
home-manager.users.james = { home.packages = with pkgs; [ blueman ]; };
|
||||||
|
fileSystems."var/lib/bluetooth" = {
|
||||||
|
device = "/persist/var/lib/bluetooth";
|
||||||
|
options = [ "bind" "noauto" "x-systemd.automount" ];
|
||||||
|
noCheck = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,6 +1,7 @@
|
||||||
{ config, pkgs, ... }: {
|
{ config, pkgs, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
./1password.nix
|
./1password.nix
|
||||||
|
./blueman.nix
|
||||||
./dunst.nix
|
./dunst.nix
|
||||||
./emacs.nix
|
./emacs.nix
|
||||||
./gammastep.nix
|
./gammastep.nix
|
||||||
|
|
Reference in New Issue
Block a user