2020-06-28 18:38:20 +00:00
|
|
|
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2020-10-25 11:36:16 +00:00
|
|
|
{ pkgs, config, depot, lib, ... }:
|
2020-06-28 18:38:20 +00:00
|
|
|
let
|
|
|
|
inherit (lib) mkBefore;
|
|
|
|
in
|
|
|
|
{
|
2020-10-25 11:36:16 +00:00
|
|
|
config = {
|
|
|
|
my.home-manager.imports = lib.mkAfter [ ./home-manager/client.nix ];
|
2020-11-05 01:50:16 +00:00
|
|
|
programs.ssh.startAgent = true;
|
2020-10-25 11:36:16 +00:00
|
|
|
nix.gc.automatic = false;
|
2021-12-28 18:42:42 +00:00
|
|
|
networking.networkmanager.extraConfig = lib.mkAfter ''
|
|
|
|
[connection]
|
|
|
|
# Enable mDNS resolver/responder by default unless otherwise configured.
|
|
|
|
connection.mdns=2
|
|
|
|
'';
|
2020-10-25 11:36:16 +00:00
|
|
|
};
|
2020-06-28 18:38:20 +00:00
|
|
|
}
|