added piper for user eve

This commit is contained in:
Eve 2025-06-05 04:53:30 +00:00
parent 6c7b40e10e
commit 98a1d1da60
2 changed files with 5 additions and 0 deletions

View file

@ -6,6 +6,7 @@
... ...
}: let }: let
userConfig = osConfig.host.users.eve; userConfig = osConfig.host.users.eve;
hardware = osConfig.host.hardware;
in { in {
config = { config = {
nixpkgs.config = { nixpkgs.config = {
@ -17,6 +18,7 @@ in {
home.packages = lib.lists.optionals userConfig.isDesktopUser ( home.packages = lib.lists.optionals userConfig.isDesktopUser (
with pkgs; [ with pkgs; [
ungoogled-chromium ungoogled-chromium
(lib.mkIf hardware.piperMouse.enable piper)
] ]
); );

View file

@ -49,6 +49,9 @@
isPrincipleUser = true; isPrincipleUser = true;
}; };
}; };
hardware = {
piperMouse.enable = true;
};
storage = { storage = {
enable = true; enable = true;