2024-04-16 02:51:46 +03:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
2024-04-16 13:14:23 +03:00
|
|
|
let
|
|
|
|
homeData = import ../data.secret.nix;
|
|
|
|
asusData = import ../../asus-gl553vd/data.secret.nix;
|
|
|
|
in
|
2024-04-16 02:51:46 +03:00
|
|
|
{
|
|
|
|
imports = [ ../../../users/jan ];
|
|
|
|
|
|
|
|
home-manager.users.jan = {
|
|
|
|
local.window-manager = {
|
|
|
|
xmonad.projects = import ./xmonad-projects.secret.nix;
|
|
|
|
};
|
|
|
|
|
2024-04-16 13:14:23 +03:00
|
|
|
local.services.lan-mouse.settings = {
|
|
|
|
port = homeData.lan-mouse.port;
|
|
|
|
connections.left = {
|
|
|
|
hostname = "asus";
|
|
|
|
ips = [ asusData.addr ];
|
|
|
|
port = asusData.lan-mouse.port;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-04-16 02:51:46 +03:00
|
|
|
local.programs.editors.arduino-ide.enable = true;
|
|
|
|
|
|
|
|
local.programs.dev-tools.k8s.enable = true;
|
|
|
|
|
|
|
|
local.programs.libreoffice = {
|
|
|
|
enable = true;
|
|
|
|
spellCheckDicts = with pkgs.hunspellDicts; [
|
|
|
|
ru_RU
|
|
|
|
en_US
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
# Extra packages
|
|
|
|
home.packages = with pkgs.unstable; [
|
2024-05-04 00:52:53 +03:00
|
|
|
# game dev
|
2024-04-16 02:51:46 +03:00
|
|
|
blender
|
|
|
|
godot_4
|
2024-05-04 00:52:53 +03:00
|
|
|
libresprite
|
|
|
|
|
|
|
|
# 3d printer
|
|
|
|
cura
|
2024-04-16 02:51:46 +03:00
|
|
|
|
|
|
|
# electronics
|
|
|
|
kicad-small
|
|
|
|
# librepcb
|
2024-05-04 00:52:53 +03:00
|
|
|
|
|
|
|
# tools
|
|
|
|
bind.dnsutils
|
|
|
|
|
|
|
|
kubo # ipfs
|
2024-04-16 02:51:46 +03:00
|
|
|
];
|
|
|
|
|
|
|
|
# games
|
|
|
|
local.games = {
|
|
|
|
mindustry.enable = true;
|
|
|
|
widelands.enable = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|