mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-06-17 10:16:31 +05:30
25 lines
463 B
Nix
25 lines
463 B
Nix
{ config, ... }:
|
|
{
|
|
flake.modules.homeManager.sirius = {
|
|
imports = with config.flake.modules.homeManager; [
|
|
desktop
|
|
];
|
|
|
|
tnix.services.lan-mouse = {
|
|
enable = true;
|
|
settings = {
|
|
clients = [
|
|
{
|
|
position = "bottom";
|
|
hostname = "canopus";
|
|
activate_on_startup = true;
|
|
ips = [ "192.168.8.2" ];
|
|
}
|
|
];
|
|
};
|
|
};
|
|
|
|
home.stateVersion = "26.05";
|
|
};
|
|
}
|