feat(home): add initial role configuration

This commit is contained in:
ooks-io 2024-06-06 22:08:51 +12:00
parent 0f9d05be36
commit 3615bb010f
3 changed files with 32 additions and 2 deletions

View file

@ -0,0 +1,26 @@
{ lib, config, osConfig, ... }:
let
inherit (lib) mkIf;
host = osConfig.ooknet.host;
in
{
config = mkIf (host.admin.name == "ooks" && host.type == "desktop" && host.role == "workstation") {
ooknet = {
theme = "minimal";
desktop = {
environment = "hyprland";
browser = "firefox";
terminal = "foot";
notes = "obsidian";
pdf = "zathura";
discord = "vesktop";
};
console = {
editor = "helix";
multiplexer = "zellij";
};
};
};
}