system/hosts/home/users/default.nix

20 lines
304 B
Nix

{ usersPath, ... }:
{
imports = [
./jan.nix
(usersPath + "/nas")
];
home-manager.sharedModules = [
{
local.window-manager.polybar.wifiDevice = "wlp3s0";
local.programs.terminals = {
wezterm.fontSize = 10.0;
alacritty.fontSize = 8.0;
};
}
];
}