Some tweaks for zora
This commit is contained in:
parent
3fa6f2dd4d
commit
9653971e3a
4 changed files with 9 additions and 4 deletions
|
|
@ -12,6 +12,7 @@
|
||||||
../../users/lyes
|
../../users/lyes
|
||||||
|
|
||||||
../../modules
|
../../modules
|
||||||
|
../../modules/server
|
||||||
|
|
||||||
# disko.nixosModules.disko
|
# disko.nixosModules.disko
|
||||||
agenix.nixosModules.default
|
agenix.nixosModules.default
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
# Boot
|
# Boot
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
boot.loader.systemd-boot.configurationLimit = 10;
|
boot.loader.systemd-boot.configurationLimit = 10;
|
||||||
# boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
# boot.kernelParams = [ "quiet" ];
|
# boot.kernelParams = [ "quiet" ];
|
||||||
boot.initrd.systemd = {
|
boot.initrd.systemd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
{ pkgs, ... }:
|
{ lib, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
# Time
|
# Time
|
||||||
time.timeZone = "Europe/Paris";
|
time.timeZone = lib.mkDefault "Europe/Paris";
|
||||||
# time.timeZone = "Africa/Tunis";
|
# time.timeZone = "Africa/Tunis";
|
||||||
|
|
||||||
# Locale
|
# Locale
|
||||||
|
|
@ -34,6 +34,5 @@
|
||||||
documentation.enable = true;
|
documentation.enable = true;
|
||||||
documentation.man.enable = true;
|
documentation.man.enable = true;
|
||||||
documentation.dev.enable = true;
|
documentation.dev.enable = true;
|
||||||
# Fails for some reason
|
|
||||||
documentation.nixos.enable = true;
|
documentation.nixos.enable = true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
5
modules/server/default.nix
Normal file
5
modules/server/default.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
{ }:
|
||||||
|
|
||||||
|
{
|
||||||
|
services.openssh.enable = true;
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue