mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-05-07 02:16:33 +05:30
25 lines
462 B
Nix
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";
|
|
};
|
|
}
|