{ config, pkgs, lib, isServer ? false, isWorkstation ? false, ... }: { imports = [ ./packages/common/default.nix ./users.nix ./hosts.nix ./yubikey.nix ] # Include packages based on whether this is a server or workstation. ++ lib.optional isServer ./packages/server/default.nix ++ lib.optional isWorkstation ./packages/workstation/default.nix # Include docker if this is a server, otherwise include nothing because we don't intend on running docker services on workstations. ++ lib.optional isServer ./docker/default.nix; # Enable networking networking.networkmanager.enable = true; # Allow unfree packages nixpkgs.config.allowUnfree = true; # Enable experimental nix-command flakes nix = { package = pkgs.nixVersions.stable; extraOptions = '' experimental-features = nix-command flakes ''; }; # Set your time zone. time.timeZone = "Europe/Amsterdam"; # Select internationalisation properties. i18n.defaultLocale = "en_US.UTF-8"; i18n.extraLocaleSettings = { LC_ADDRESS = "nl_NL.UTF-8"; LC_IDENTIFICATION = "nl_NL.UTF-8"; LC_MEASUREMENT = "nl_NL.UTF-8"; LC_MONETARY = "nl_NL.UTF-8"; LC_NAME = "nl_NL.UTF-8"; LC_NUMERIC = "nl_NL.UTF-8"; LC_PAPER = "nl_NL.UTF-8"; LC_TELEPHONE = "nl_NL.UTF-8"; LC_TIME = "nl_NL.UTF-8"; }; environment.systemPackages = with pkgs; [ tailscale pciutils ]; services.tailscale.enable = true; security.sudo.extraConfig = '' Defaults env_reset,pwfeedback ''; # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions # on your system were taken. It‘s perfectly fine and recommended to leave # this value at the release version of the first install of this system. # Before changing this value read the documentation for this option # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). system.stateVersion = "24.05"; # Did you read the comment? }