8 lines
119 B
Nix
8 lines
119 B
Nix
{ lib, ... }:
|
|
with lib; {
|
|
options.home.desktop.enable = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
};
|
|
}
|