42 lines
732 B
Nix
42 lines
732 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [ ../../../users/jan ];
|
||
|
|
||
|
home-manager.users.jan = {
|
||
|
local.window-manager = {
|
||
|
xmonad.projects = import ./xmonad-projects.secret.nix;
|
||
|
};
|
||
|
|
||
|
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; [
|
||
|
# 3d programs
|
||
|
blender
|
||
|
cura
|
||
|
godot_4
|
||
|
|
||
|
# electronics
|
||
|
kicad-small
|
||
|
# librepcb
|
||
|
];
|
||
|
|
||
|
# games
|
||
|
local.games = {
|
||
|
mindustry.enable = true;
|
||
|
widelands.enable = true;
|
||
|
};
|
||
|
};
|
||
|
}
|