Files
Nixos/modules/system/nixos/apps/gnome/apps.nix
T
2026-04-05 15:27:38 +02:00

25 lines
345 B
Nix

{
lib,
pkgs,
config,
...
}:
with lib;
let
cfg = config.os.gnome.apps;
in
{
options.os.gnome.apps = {
enable = mkEnableOption "System gnome apps service";
};
config = mkIf cfg.enable {
environment = {
systemPackages = with pkgs; [ nautilus ];
};
services.gvfs.enable = true; # SMB, FTP, ... access
};
}