diff --git a/home/roles/default.nix b/home/roles/default.nix index 0293729..c4bfdf2 100644 --- a/home/roles/default.nix +++ b/home/roles/default.nix @@ -1,5 +1,6 @@ { imports = [ ./ooks-desktop-workstation.nix + ./ooks-laptop-workstation.nix ]; } diff --git a/home/roles/ooks-desktop-workstation.nix b/home/roles/ooks-desktop-workstation.nix index 6276953..8e87608 100644 --- a/home/roles/ooks-desktop-workstation.nix +++ b/home/roles/ooks-desktop-workstation.nix @@ -1,4 +1,4 @@ -{ lib, config, osConfig, ... }: +{ lib, osConfig, ... }: let inherit (lib) mkIf; diff --git a/home/roles/ooks-laptop-workstation.nix b/home/roles/ooks-laptop-workstation.nix new file mode 100644 index 0000000..76c9898 --- /dev/null +++ b/home/roles/ooks-laptop-workstation.nix @@ -0,0 +1,26 @@ +{ lib, osConfig, ... }: + +let + inherit (lib) mkIf; + host = osConfig.ooknet.host; +in + +{ + config = mkIf (host.admin.name == "ooks" && host.type == "laptop" && host.role == "workstation") { + ooknet = { + theme = "minimal"; + desktop = { + environment = "hyprland"; + browser = "firefox"; + terminal = "foot"; + notes = "obsidian"; + pdf = "zathura"; + discord = "vesktop"; + }; + console = { + editor = "helix"; + multiplexer = "zellij"; + }; + }; + }; +}