From 9eef4733cb594b252652575696610a2f12a26111 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Mon, 28 Apr 2025 10:19:10 +0200 Subject: [PATCH] fix: actually add enable option to `options.liv.gui`... --- roles/gui.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/roles/gui.nix b/roles/gui.nix index 802e168..4b05bd4 100644 --- a/roles/gui.nix +++ b/roles/gui.nix @@ -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;