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;
|
2022-09-24 15:40:45 +00:00
|
|
|
services.udisks2.enable = true;
|
2024-04-26 17:54:47 +00:00
|
|
|
|
|
|
|
# Enable mDNS resolver/responder by default unless otherwise configured.
|
|
|
|
networking.networkmanager.settings.connection."connection.mdns" = 2;
|
2024-01-27 20:59:57 +00:00
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; lib.mkMerge [
|
|
|
|
(lib.mkIf config.virtualisation.podman.enable [ podman-compose ])
|
|
|
|
];
|
2020-10-25 11:36:16 +00:00
|
|
|
};
|
2020-06-28 18:38:20 +00:00
|
|
|
}
|