32 lines
635 B
Nix
32 lines
635 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.home-manager.nixosModules.home-manager
|
|
./hardware-configuration.nix
|
|
../common/configuration.nix
|
|
];
|
|
|
|
home-manager = {
|
|
extraSpecialArgs = { inherit inputs outputs; };
|
|
users = {
|
|
horseman = import ../../home-manager/server-apps.nix;
|
|
};
|
|
};
|
|
|
|
networking.hostName = "solis";
|
|
|
|
boot.loader.grub.enable = true;
|
|
boot.loader.grub.device = "/dev/sda";
|
|
boot.loader.grub.useOSProber = true;
|
|
|
|
virtualisation.docker.enable = true;
|
|
|
|
services.resolved.enable = true;
|
|
services.resolved.extraConfig = "DNSStubListener=no\n";
|
|
}
|