flake/hosts/wallfacer/configuration.nix
2025-08-02 16:30:05 +03:00

22 lines
504 B
Nix

{ lib, config, ... }:
{
imports = [
./hardware-configuration.nix
../../modules
];
myModules = {
enableKDE = false;
enableFonts = false;
enableNextcloud = true;
enableHydra = true;
# enableCaddy = true;
enableAttic = true;
enableCloudflared = true;
};
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
i18n.inputMethod.enable = lib.mkForce false;
networking.hostName = "wallfacer";
system.stateVersion = "25.05";
}