mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 23:00:14 +01:00
14 lines
210 B
Nix
14 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;
|
|
};
|
|
};
|
|
}
|