nix-conf/systems/kamimusubi/default.nix

34 lines
488 B
Nix
Raw Normal View History

2024-07-10 23:02:54 +02:00
{
config,
pkgs,
lib,
...
}:
2024-01-10 19:51:13 +01:00
{
jopejoe1 = {
local.enable = true;
nix.enable = true;
2024-01-13 18:01:23 +01:00
user = {
root.enable = true;
};
2024-01-11 00:19:11 +01:00
ssh.enable = true;
2024-01-10 19:51:13 +01:00
};
time.timeZone = "Europe/Berlin";
2024-07-10 23:02:54 +02:00
2024-01-11 00:12:16 +01:00
services.openssh.settings.PermitRootLogin = lib.mkForce "yes";
2024-07-10 23:02:54 +02:00
2024-02-02 23:44:43 +01:00
boot.loader = {
efi = {
canTouchEfiVariables = false;
};
grub = {
efiSupport = true;
efiInstallAsRemovable = true;
device = "nodev";
forcei686 = true;
};
2024-01-10 19:51:13 +01:00
};
}