Some tweaks for zora

This commit is contained in:
Lyes Saadi 2025-10-12 01:22:12 +02:00
parent 3fa6f2dd4d
commit 9653971e3a
Signed by: lyes
GPG key ID: 55A1D803917CF39A
4 changed files with 9 additions and 4 deletions

View file

@ -12,6 +12,7 @@
../../users/lyes
../../modules
../../modules/server
# disko.nixosModules.disko
agenix.nixosModules.default

View file

@ -7,7 +7,7 @@
# Boot
boot.loader.systemd-boot.enable = true;
boot.loader.systemd-boot.configurationLimit = 10;
# boot.loader.efi.canTouchEfiVariables = true;
boot.loader.efi.canTouchEfiVariables = true;
# boot.kernelParams = [ "quiet" ];
boot.initrd.systemd = {
enable = true;

View file

@ -1,8 +1,8 @@
{ pkgs, ... }:
{ lib, pkgs, ... }:
{
# Time
time.timeZone = "Europe/Paris";
time.timeZone = lib.mkDefault "Europe/Paris";
# time.timeZone = "Africa/Tunis";
# Locale
@ -34,6 +34,5 @@
documentation.enable = true;
documentation.man.enable = true;
documentation.dev.enable = true;
# Fails for some reason
documentation.nixos.enable = true;
}

View file

@ -0,0 +1,5 @@
{ }:
{
services.openssh.enable = true;
}