From 65c0a042b5f66a7d0cb86a0e72b26606c13c2b19 Mon Sep 17 00:00:00 2001 From: Kat Inskip Date: Thu, 7 Aug 2025 15:03:41 -0600 Subject: [PATCH] feat: beepy --- nixos/profiles/graphical/logitech.nix | 2 +- systems/daiyousei.nix | 11 ++++++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/nixos/profiles/graphical/logitech.nix b/nixos/profiles/graphical/logitech.nix index bd7fc0f2..e79674d4 100644 --- a/nixos/profiles/graphical/logitech.nix +++ b/nixos/profiles/graphical/logitech.nix @@ -1,6 +1,6 @@ {pkgs, ...}: { services.solaar = { - enable = truem + enable = true; window = "hide"; package = pkgs.solaar; batteryIcons = "regular"; diff --git a/systems/daiyousei.nix b/systems/daiyousei.nix index 8763fa53..24c99c35 100644 --- a/systems/daiyousei.nix +++ b/systems/daiyousei.nix @@ -1,4 +1,5 @@ -_: let +{ lib, pkgs, ... }: let + inherit (lib.modules) mkForce; hostConfig = { tree, modulesPath, @@ -21,6 +22,14 @@ _: let web ]); + home-manager.sharedModules = [ + { + programs.niri = { + package = pkgs.niri; + }; + } + ]; + system.stateVersion = "23.11"; }; in {