fix: actually add enable option to options.liv.gui...

This commit is contained in:
Ahwx 2025-04-28 10:19:10 +02:00
parent 1e18621bac
commit 9eef4733cb

View file

@ -1,9 +1,20 @@
{ lib, ... }: {
lib,
pkgs,
config,
username,
home-manager,
...
}:
with lib; with lib;
let let
cfg = config.liv.gui; cfg = config.liv.gui;
in in
{ {
options.liv.gui = {
enable = mkEnableOption "Enable GUI workflow";
};
config = mkIf cfg.enable { config = mkIf cfg.enable {
services = { services = {
gvfs.enable = true; gvfs.enable = true;