feat(home): Install Nemo

This commit is contained in:
punkfairie 2025-03-06 19:30:59 -08:00
parent ed083f95f7
commit f82f26c31f
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
3 changed files with 24 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;
};
}