nix-config/modules/default.nix

42 lines
650 B
Nix

{config, ...}: let
inherit (config) conf;
in {
imports = [
./apps
./containers
./fedi
./firewall
./fonts
./games
./git
./home
./layout
./mail
./matrix
./networking
./nginx
./niri
./nix
./secureboot
./ssh
./utils
./vm
./website
./yubikey
];
documentation.nixos.enable = false;
time.timeZone = "Europe/Amsterdam";
i18n = {
defaultLocale = "en_US.UTF-8";
};
users.users.${conf.username} = {
isNormalUser = true;
description = conf.username;
extraGroups = ["networkmanager" "wheel"];
};
system.stateVersion = conf.stateVersion;
}