nix-config/modules/default.nix
2024-10-11 00:49:11 +02:00

38 lines
625 B
Nix

{ config, pkgs, ... }: let
inherit (config) conf;
in {
imports = [
./apps
./containers
./fonts
./games
./home
./impermanence
./layout
./networking
./niri
./nix
./secureboot
./utils
./vm
];
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" ];
};
hardware.opentabletdriver = {
enable = true;
};
system.stateVersion = conf.stateVersion;
}