mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
15 lines
210 B
Nix
15 lines
210 B
Nix
|
|
{ lib, ... }:
|
||
|
|
with lib;
|
||
|
|
let
|
||
|
|
cfg = config.liv.gui;
|
||
|
|
in
|
||
|
|
{
|
||
|
|
config = mkIf cfg.enable {
|
||
|
|
services = {
|
||
|
|
gvfs.enable = true;
|
||
|
|
gnome.gnome-keyring.enable = true;
|
||
|
|
dbus.enable = true;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|