feat: nemo

This commit is contained in:
punkfairie 2025-05-26 17:54:00 -07:00
parent ee879be648
commit b3de4567ff
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
3 changed files with 7 additions and 2 deletions

View file

@ -21,6 +21,10 @@ in {
(lib.optionalAttrs cfg.desktop {
shell.niri = enabled;
programs = {
nemo = enabled;
};
services = {
udiskie = enabled;
};

View file

@ -1,6 +1,7 @@
{
imports = [
./fuzzel.nix
./nemo.nix
./nh.nix
./waybar.nix
# TODO: uncomment when swaylock is figured out

View file

@ -8,11 +8,11 @@
in {
options.marleyos.programs.nemo.enable = lib.mkEnableOption "nemo";
config = lib.mkIf cfg.enable {
config = lib.mkIf (cfg.enable && pkgs.stdenv.isLinux) {
home.packages = with pkgs; [
nemo
];
marleyos.apps.file-browser = pkgs.nemo;
marleycfg.apps.file-browser = pkgs.nemo;
};
}