This commit is contained in:
2025-08-29 15:25:40 +02:00
parent 26440bfeee
commit f3821f0dfa
201 changed files with 2461 additions and 1546 deletions

View File

@@ -3,10 +3,18 @@
config,
lib,
...
}: let
inherit (lib) mkIf mkEnableOption mkOption types mkMerge;
}:
let
inherit (lib)
mkIf
mkEnableOption
mkOption
types
mkMerge
;
cfg = config.home.programs.pkgs;
in {
in
{
options = {
home.programs.pkgs = {
enable = mkEnableOption "Enables miscellaneous utility apps";
@@ -41,14 +49,15 @@ in {
programs = {
btop = {
enable = true;
package = pkgs.btop.override {rocmSupport = true;};
package = pkgs.btop.override { rocmSupport = true; };
settings = {
color_theme = "gruvbox_material_dark";
};
};
};
home.packages = with pkgs;
home.packages =
with pkgs;
mkMerge [
[
cmatrix
@@ -98,13 +107,13 @@ in {
])
(mkIf cfg.laptop.enable [
])
])
(mkIf cfg.server.enable [
])
])
(mkIf cfg.dev.enable [
])
])
];
};
}