Compare commits

...

2 commits

Author SHA1 Message Date
6378d0f905
feat(home/appearance): Install more fonts 2025-03-06 19:46:57 -08:00
f82f26c31f
feat(home): Install Nemo 2025-03-06 19:30:59 -08:00
4 changed files with 33 additions and 0 deletions

View file

@ -55,6 +55,11 @@ in {
description = "The terminal emulator to use.";
};
file-browser = lib.mkOption {
type = lib.types.package;
description = "The file manager to use.";
};
browser = lib.mkOption {
type = lib.types.package;
default = config.programs.floorp.package;

View file

@ -15,6 +15,7 @@ in {
calibre = enabled;
discord = enabled;
floorp = enabled;
nemo = enabled;
pidgin = enabled;
thunderbird = enabled;
phpstorm = enabled;

View file

@ -0,0 +1,18 @@
{
lib,
config,
pkgs,
...
}: let
cfg = config.marleyos.programs.nemo;
in {
options.marleyos.programs.nemo.enable = lib.mkEnableOption "nemo";
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
nemo
];
marleyos.apps.file-browser = pkgs.nemo;
};
}

View file

@ -45,5 +45,14 @@ in {
name = "BreezeX-RosePine-Linux";
};
};
fonts = {
enableDefaultPackages = true;
packages = with pkgs; [
corefonts
noto-fonts
];
};
};
}