add: strawberry

This commit is contained in:
Evan Reichard 2025-11-03 08:58:33 -05:00
parent e7ee14a3c1
commit ad6de45681
3 changed files with 19 additions and 0 deletions

View File

@ -27,6 +27,7 @@ in
graphical = {
wms.hyprland = enabled;
ghostty = enabled;
strawberry = enabled;
gimp = enabled;
wireshark = enabled;
ghidra = enabled;

View File

@ -0,0 +1,17 @@
{ pkgs, lib, config, namespace, ... }:
let
inherit (lib) mkIf mkEnableOption;
cfg = config.${namespace}.programs.graphical.strawberry;
in
{
options.${namespace}.programs.graphical.strawberry = {
enable = mkEnableOption "Enable Strawberry";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
strawberry
libgpod
];
};
}

View File

@ -85,6 +85,7 @@ in
# Additional System Packages
environment.systemPackages = with pkgs; [
dool
mosh
rclone
unzip