feat: setup base

This commit is contained in:
tux
2026-05-06 00:55:41 +05:30
parent a62346367f
commit 33408ed45e
35 changed files with 1730 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{ 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";
};
}