# Edit this configuration file to define what should be installed on # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). { inputs, lib, pkgs, ... }: { imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix ../../roles/common/default.nix (import ../../roles/desktop/default.nix { x11Only = true; inherit inputs; inherit pkgs; }) ../../roles/kids/default.nix (import ../../roles/kodi/default.nix { autologin = false; wayland = false; inherit lib; inherit pkgs; }) ../../roles/nfs-mounts/default.nix ../../roles/nix/default.nix ../../roles/printing/default.nix (import ../../roles/users/default.nix { extraGroups = ["input" "libvirtd"]; }) ../../roles/virtualisation/default.nix ]; # Use the systemd-boot EFI boot loader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; boot.loader.grub.useOSProber = true; networking = { hostName = "z790prors-nix"; # Define your hostname. domain = "oglehome"; defaultGateway = "10.0.0.1"; nameservers = [ "10.0.0.1" ]; # The global useDHCP flag is deprecated, therefore explicitly set to false here. # Per-interface useDHCP will be mandatory in the future, so this generated config # replicates the default behaviour. useDHCP = false; interfaces.enp3s0.ipv4.addresses = [{ address = "10.0.0.37"; prefixLength = 24; }]; }; # TODO: Figure out something with this nix.settings.secret-key-files = /root/cache-priv-key.pem; # 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 = "21.11"; # Did you read the comment? }