2024-05-10 02:37:26 +03:00
|
|
|
{ hostsPath, usersPath, ... }:
|
2024-04-16 02:51:46 +03:00
|
|
|
|
2024-04-16 13:14:23 +03:00
|
|
|
let
|
2024-05-10 02:37:26 +03:00
|
|
|
asusData = import (hostsPath + "/asus-gl553vd/data.secret.nix");
|
|
|
|
homeData = import (hostsPath + "/home/data.secret.nix");
|
2024-04-16 13:14:23 +03:00
|
|
|
in
|
2024-04-16 02:51:46 +03:00
|
|
|
{
|
2024-05-10 02:37:26 +03:00
|
|
|
imports = [ (usersPath + "/jan") ];
|
2024-04-16 02:51:46 +03:00
|
|
|
|
|
|
|
home-manager.users.jan = {
|
|
|
|
local.window-manager = {
|
|
|
|
xmonad.projects = import ./xmonad-projects.secret.nix;
|
|
|
|
};
|
|
|
|
|
|
|
|
# local.programs.dev-tools.k8s.enable = true;
|
|
|
|
|
2024-04-22 23:43:16 +03:00
|
|
|
local.programs.libreoffice.enable = false;
|
2024-04-16 13:14:23 +03:00
|
|
|
|
|
|
|
local.services.lan-mouse.settings = {
|
|
|
|
port = asusData.lan-mouse.port;
|
|
|
|
connections.left = {
|
|
|
|
hostname = "home";
|
|
|
|
ips = [ homeData.addr ];
|
|
|
|
port = homeData.lan-mouse.port;
|
|
|
|
};
|
|
|
|
};
|
2024-04-16 02:51:46 +03:00
|
|
|
};
|
|
|
|
}
|