attempt to fix field type
This commit is contained in:
parent
1816d49646
commit
5e620c1215
@ -1,8 +1,8 @@
|
|||||||
{ pkgs, config, lib, ... }: let
|
{ pkgs, config, lib, ... }: let
|
||||||
cfg = config.grimmShared;
|
cfg = config.grimmShared;
|
||||||
in {
|
in {
|
||||||
config = with cfg; lib.mkIf (enable && network) lib.mkMerge [
|
config = lib.mkMerge [
|
||||||
{
|
(with cfg; lib.mkIf (enable && network) {
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
networking.useDHCP = lib.mkDefault true;
|
networking.useDHCP = lib.mkDefault true;
|
||||||
networking.firewall.enable = true;
|
networking.firewall.enable = true;
|
||||||
@ -13,11 +13,11 @@ in {
|
|||||||
wireguard-tools
|
wireguard-tools
|
||||||
bluetuith
|
bluetuith
|
||||||
];
|
];
|
||||||
}
|
})
|
||||||
(lib.mkIf cfg.graphical {
|
(with cfg; lib.mkIf (enable && network && graphical) {
|
||||||
services.blueman.enable = true;
|
services.blueman.enable = true;
|
||||||
})
|
})
|
||||||
(lib.mkIf cfg.sound {
|
(with cfg; lib.mkIf (enable && network && sound) {
|
||||||
systemd.user.services.mpris-proxy = {
|
systemd.user.services.mpris-proxy = {
|
||||||
description = "Mpris proxy";
|
description = "Mpris proxy";
|
||||||
after = [ "network.target" "sound.target" ];
|
after = [ "network.target" "sound.target" ];
|
||||||
|
Loading…
Reference in New Issue
Block a user