20 lines
291 B
Nix
20 lines
291 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./jan.nix
|
||
|
../../../users/nas
|
||
|
];
|
||
|
|
||
|
home-manager.sharedModules = [
|
||
|
{
|
||
|
local.window-manager.polybar.wifiDevice = "wlp3s0";
|
||
|
|
||
|
local.programs.terminals = {
|
||
|
wezterm.fontSize = 10.0;
|
||
|
alacritty.fontSize = 8.0;
|
||
|
};
|
||
|
}
|
||
|
];
|
||
|
}
|