nix-conf/systems/kamimusubi/default.nix
2024-02-02 23:44:43 +01:00

29 lines
485 B
Nix

{ config, pkgs, lib, ... }:
{
jopejoe1 = {
local.enable = true;
nix.enable = true;
user = {
root.enable = true;
};
ssh.enable = true;
};
time.timeZone = "Europe/Berlin";
services.openssh.settings.PermitRootLogin = lib.mkForce "yes";
boot.loader = {
efi = {
canTouchEfiVariables = false;
};
grub = {
efiSupport = true;
efiInstallAsRemovable = true;
device = "nodev";
forcei686 = true;
};
};
}