diff --git a/home/default.nix b/home/default.nix index 44341dd..7368d96 100644 --- a/home/default.nix +++ b/home/default.nix @@ -12,7 +12,6 @@ ./laptop.nix ./lorri.nix ./rofi.nix - ./secrets ./ssh.nix ./themes ./tmux.nix diff --git a/home/secrets/bluetooth-mouse-mac-address.secret b/home/secrets/bluetooth-mouse-mac-address.secret deleted file mode 100644 index cc6ff3c..0000000 Binary files a/home/secrets/bluetooth-mouse-mac-address.secret and /dev/null differ diff --git a/home/secrets/default.nix b/home/secrets/default.nix deleted file mode 100644 index b149dde..0000000 --- a/home/secrets/default.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ lib, ... }: -let - inherit (lib) - fileContents - mkOption - types - ; -in -{ - options.my.secrets = mkOption { - type = types.attrs; - }; - - config.my.secrets = { - # I'm not sure hiding this is very important, but it *seems* like a bad idea - # to expose this - bluetooth-mouse-mac-address = fileContents ./bluetooth-mouse-mac-address.secret; - }; -} diff --git a/home/x/i3bar.nix b/home/x/i3bar.nix index 335ba68..c1ec2c3 100644 --- a/home/x/i3bar.nix +++ b/home/x/i3bar.nix @@ -105,12 +105,6 @@ in block = "networkmanager"; primary_only = true; } - { - block = "bluetooth"; - mac = config.my.secrets.bluetooth-mouse-mac-address; - hide_disconnected = true; - format = "{percentage}"; - } { block = "sound"; driver = "pulseaudio";