forked from emily/nixfiles
21 lines
522 B
Nix
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;
|
|
}
|