mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
17 lines
251 B
Nix
17 lines
251 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
|
|
networking = {
|
|
hostName = "socrates";
|
|
useDHCP = lib.mkDefault true;
|
|
networkmanager.enable = true;
|
|
};
|
|
|
|
programs.gnupg = {
|
|
agent = {
|
|
enable = true;
|
|
enableSSHSupport = true;
|
|
};
|
|
};
|
|
}
|