Files
nix-config/modules/hosts/sirius/home.nix
2026-05-06 19:48:33 +05:30

25 lines
462 B
Nix

{ config, ... }:
{
flake.modules.homeManager.sirius = {
imports = with config.flake.modules.homeManager; [
desktop
];
tnix.services.lan-mouse = {
enable = true;
settings = {
clients = [
{
position = "right";
hostname = "canopus";
activate_on_startup = true;
ips = [ "192.168.8.2" ];
}
];
};
};
home.stateVersion = "26.05";
};
}