nixfiles/config/hosts/ryuuko/configuration.nix

22 lines
522 B
Nix
Raw Normal View History

2024-02-14 19:42:25 +01:00
{ config, ... }: {
2024-02-05 22:22:40 +01:00
imports = [
../../common
../../profiles/graphical
2024-02-14 19:42:25 +01:00
./hardware-configuration.nix
2024-02-05 22:22:40 +01:00
];
2024-02-14 19:42:25 +01:00
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;
2024-02-05 22:22:40 +01:00
}