feat(mice): solaar -> ratbagd/piper
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-04-24 17:44:08 -04:00
parent b7b25ea3cc
commit 31c3dbb205
4 changed files with 6 additions and 8 deletions

View file

@ -10,8 +10,8 @@ in {
../../modules/hyprland ../../modules/hyprland
../../modules/kmscon.nix ../../modules/kmscon.nix
../../modules/printer.nix ../../modules/printer.nix
../../modules/ratbag-mice.nix
../../modules/razer.nix ../../modules/razer.nix
../../modules/logitech.nix
../../modules/sshd.nix ../../modules/sshd.nix
../../modules/tailscale.nix ../../modules/tailscale.nix

Binary file not shown.

BIN
flake.nix

Binary file not shown.

View file

@ -1,7 +1,7 @@
{ {
config, config,
lib, lib,
solaar, pkgs,
... ...
}: let }: let
inherit (config.vars) mainUser; inherit (config.vars) mainUser;
@ -15,16 +15,14 @@
.windowManager .windowManager
.hyprland; .hyprland;
in { in {
imports = [ services.ratbagd.enable = true;
solaar.nixosModules.default
];
programs.solaar.enable = true;
# HOME-MANAGER CONFIG # HOME-MANAGER CONFIG
home-manager.users.${mainUser} = { home-manager.users.${mainUser} = {
home.packages = with pkgs; [piper];
wayland.windowManager.hyprland = mkIf (cfgHypr.enable) { wayland.windowManager.hyprland = mkIf (cfgHypr.enable) {
settings.exec-once = ["solaar -w hide -b symbolic"]; # settings.exec-once = [""];
}; };
}; };
} }