ooknet/home/roles/ooks-micro-workstation.nix

23 lines
455 B
Nix

{
lib,
osConfig,
...
}: let
inherit (lib) mkIf;
inherit (osConfig.ooknet) host;
in {
config = mkIf (host.admin.name == "ooks" && host.type == "micro" && host.role == "workstation") {
ooknet = {
desktop = {
environment = "hyprland";
browser = "firefox";
terminal = "foot";
discord = "vesktop";
};
console = {
editor = "helix";
multiplexer = "zellij";
};
};
};
}