Completed luna config for real this time

This commit is contained in:
KoenDR06 2025-02-27 19:08:42 +00:00
parent 5ad8529721
commit 2c75ae213a
17 changed files with 357 additions and 62 deletions

View file

@ -8,6 +8,7 @@
}: let
inherit (lib) mkEnableOption mkIf mkOption types;
cfg = config.horseman.apps.terminal;
homeCfg = config.horseman;
in {
options = {
horseman.apps.terminal = {
@ -16,9 +17,20 @@ in {
};
config = {
home-manager.users.${homeCfg.username} = {
imports = [./terminal/neovim.nix];
};
services.lorri.enable = true;
environment.systemPackages = with pkgs; [
gnupg
neofetch
sops
sxiv
termdown
unzip
wakeonlan
];
};
}