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