1
0
Fork 0
forked from emily/nixfiles
nixfiles-emily/config/hosts/ryuuko/configuration.nix
2024-02-14 19:42:25 +01:00

21 lines
522 B
Nix

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