feat(home): add initial role configuration
This commit is contained in:
parent
0f9d05be36
commit
3615bb010f
3 changed files with 32 additions and 2 deletions
26
home/roles/ooks-desktop-workstation.nix
Normal file
26
home/roles/ooks-desktop-workstation.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue