refactor(modules): split monolithic system/desktop config

This commit is contained in:
randogoth 2026-02-04 10:29:55 +02:00
parent c299acb87d
commit febdf2702c
13 changed files with 249 additions and 209 deletions

View file

@ -0,0 +1,18 @@
{ lib, ... }:
{
boot.supportedFilesystems = [
"btrfs"
"ext4"
"vfat"
"xfs"
];
boot.loader = {
systemd-boot = {
enable = true;
configurationLimit = lib.mkDefault 10;
};
efi.canTouchEfiVariables = true;
};
}