mirror of
https://git.dodsorf.as/Dandellion/dotfiles.git
synced 2024-12-28 13:37:30 +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";
|
||
|
};
|
||
|
|
||
|
}
|