26 lines
384 B
Nix
26 lines
384 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
./hardware-configuration.nix
|
|
./config/default.nix
|
|
../../config/default/default.nix
|
|
|
|
];
|
|
networking.hostName = "darkstar";
|
|
time.timeZone = "Europe/Berlin";
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
# programs.gnupg.agent = {
|
|
# enable = true;
|
|
# enableSSHSupport = true;
|
|
# };
|
|
|
|
|
|
services.openssh.enable = true;
|
|
|
|
|
|
}
|