feat(home): add initial role configuration
This commit is contained in:
parent
0f9d05be36
commit
3615bb010f
3 changed files with 32 additions and 2 deletions
5
home/roles/default.nix
Normal file
5
home/roles/default.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./ooks-desktop-workstation.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
let
|
let
|
||||||
cfg = config.ooknet.host.admin;
|
cfg = config.ooknet.host.admin;
|
||||||
host = config.ooknet.host;
|
|
||||||
ifTheyExist = groups: builtins.filter (group: builtins.hasAttr group config.users.groups) groups;
|
ifTheyExist = groups: builtins.filter (group: builtins.hasAttr group config.users.groups) groups;
|
||||||
inherit (lib) mkIf types mkOption;
|
inherit (lib) mkIf types mkOption;
|
||||||
in
|
in
|
||||||
|
|
@ -68,7 +67,7 @@ in
|
||||||
verbose = true;
|
verbose = true;
|
||||||
extraSpecialArgs = { inherit inputs outputs self; };
|
extraSpecialArgs = { inherit inputs outputs self; };
|
||||||
users.${cfg.name} = {
|
users.${cfg.name} = {
|
||||||
imports = [ "${self}/home/user/${cfg.name}/${host.name}" ];
|
imports = [ "${self}/home" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue