mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
fix: actually add enable option to options.liv.gui...
This commit is contained in:
parent
1e18621bac
commit
9eef4733cb
1 changed files with 12 additions and 1 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue