mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-16 04:38:50 +01:00
14 lines
233 B
Nix
14 lines
233 B
Nix
# pantheon files daemon.
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
imports = [
|
|
(mkRemovedOptionModule [ "services" "pantheon" "files" "enable" ] "Use `environment.systemPackages [ pkgs.pantheon.elementary-files ];`")
|
|
];
|
|
|
|
}
|