mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-06 11:06:54 +01:00
33 lines
488 B
Nix
33 lines
488 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;
|
|
};
|
|
};
|
|
}
|