dotfiles/home/profiles/gui.nix
2024-08-17 03:17:40 +02:00

12 lines
196 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.profiles.base;
in {
options.profiles.gui = {
enable = lib.mkEnableOption "Whether or not to install programs with user-interfaces";
};
}