nixfiles/home/wm-common.nix

15 lines
327 B
Nix

{ pkgs, lib, config, osConfig, options, ...}:
let
inherit (lib) mkDefault;
in
{
# Common options for standalone window managers; many of these (or
# alternatives thereof) are pulled in by desktop environments.
services = {
udiskie = {
enable = mkDefault true;
automount = mkDefault false;
};
};
}