feat: install terminfo on orion

This commit is contained in:
2026-04-26 23:44:48 +02:00
parent 9b0c2e647d
commit 8126141b22
2 changed files with 15 additions and 0 deletions
+14
View File
@@ -4,6 +4,20 @@ let
repoHelpers = repo.helpers;
in
{
flake.modules.nixos.terminfo =
{ pkgs, ... }:
let
terminalPackage = repoHelpers.resolvePackagePath {
inherit pkgs;
path = repo.desktop.terminal.packagePath;
};
in
{
environment.systemPackages = [
terminalPackage.terminfo
];
};
flake.modules.homeManager.terminal =
{
lib,
+1
View File
@@ -21,6 +21,7 @@ in
imports = [
nixosModules.host-base
nixosModules.terminfo
nixosModules.sops-host-ssh-key
nixosModules.openssh
nixosModules.caddy