16 lines
280 B
Nix
16 lines
280 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
imports = [ ../../../users/jan ];
|
||
|
|
||
|
home-manager.users.jan = {
|
||
|
local.window-manager = {
|
||
|
xmonad.projects = import ./xmonad-projects.secret.nix;
|
||
|
};
|
||
|
|
||
|
# local.programs.dev-tools.k8s.enable = true;
|
||
|
|
||
|
local.programs.libreoffice.enable = true;
|
||
|
};
|
||
|
}
|