system/machines/default.nix
janabhumi 7903732c09
refac: add extra home module...
to configure polybar wifi device manually for each machine
2022-10-12 02:01:16 +03:00

34 lines
551 B
Nix

{ ... } @ inputs:
let
hardware = inputs.hardware.nixosModules;
in
{
home = {
system = "x86_64-linux";
extraModules = [
../modules/garbage-collector.nix
../users/jan
];
extraHomeModule = { ... }: {
local.polybar.wifiDevice = "wlp11s0f3u2";
};
};
asus-gl553vd = {
system = "x86_64-linux";
extraModules = [
hardware.common-cpu-intel
../users/jan
];
extraHomeModule = { ... }: {
local.polybar.wifiDevice = "wlp2s0";
local.alacritty.fontSize = 6.0;
};
};
}