system/hosts/home/users/default.nix

20 lines
304 B
Nix
Raw Normal View History

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