Files
dotnix/hosts/darkstar/configuration.nix
T
2026-07-06 16:06:45 +02:00

29 lines
460 B
Nix

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