framework

This commit is contained in:
Henri Dohmen 2025-10-10 19:29:55 +02:00
parent 42099d49b4
commit aca4caf02c
17 changed files with 279 additions and 33 deletions

View file

@ -1,4 +1,5 @@
_: {
{ pkgs, ... }:
{
networking.hostName = "roam";
age.identityPaths = [
@ -14,6 +15,21 @@ _: {
./services.nix
];
boot = {
loader = {
efi.canTouchEfiVariables = true;
grub = {
enable = true;
efiSupport = true;
device = "nodev";
};
};
kernelPackages = pkgs.linuxPackages_6_12;
initrd.systemd.network.wait-online.enable = false;
};
security = {
acme = {
acceptTerms = true;