mirror of
https://git.dodsorf.as/Dandellion/dotfiles.git
synced 2025-01-09 19:01:15 +01:00
12 lines
196 B
Nix
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";
|
||
|
};
|
||
|
|
||
|
}
|