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;
let
cfg = config.liv.gui;
in
{
options.liv.gui = {
enable = mkEnableOption "Enable GUI workflow";
};
config = mkIf cfg.enable {
services = {
gvfs.enable = true;