nixfiles/config/hosts/ryuuko/configuration.nix
2024-02-22 20:20:07 +01:00

23 lines
614 B
Nix

{ config, lib, ... }: {
imports = [
../../common
../../profiles/graphical
./hardware-configuration.nix
];
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
deployment = {
targetHost = "192.168.122.159";
targetUser = "emily";
};
users.mutableUsers = lib.mkForce true;
i18n.defaultLocale = "en_GB.UTF-8";
networking.hostName = "ryuuko";
networking.networkmanager.enable = true;
systemd.network.enable = lib.mkForce false;
kyouma.machine-type.physical = true;
kyouma.machine-type.portable = true;
services.openssh.enable = true;
}