feat: nemo
This commit is contained in:
parent
ee879be648
commit
b3de4567ff
3 changed files with 7 additions and 2 deletions
|
@ -21,6 +21,10 @@ in {
|
|||
(lib.optionalAttrs cfg.desktop {
|
||||
shell.niri = enabled;
|
||||
|
||||
programs = {
|
||||
nemo = enabled;
|
||||
};
|
||||
|
||||
services = {
|
||||
udiskie = enabled;
|
||||
};
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
imports = [
|
||||
./fuzzel.nix
|
||||
./nemo.nix
|
||||
./nh.nix
|
||||
./waybar.nix
|
||||
# TODO: uncomment when swaylock is figured out
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue