dotfiles/modules/desktop/default.nix

19 lines
335 B
Nix

{ config, options, lib, pkgs, ... }:
with lib;
let
cfg = config.modules.desktop;
in {
options.modules.desktop = {
theme = mkOption {
type = types.str;
default = "still";
description = "Sets a particular styling and wallpaper configuration.";
};
};
config = {
services.dbus.enable = true;
};
}