Options

Options declared in hosts/<filename/configuration.nix

GUI related options can be found in GUI Options

hostName

System host name

type: String

Example:

{
  hostName = "NixPC";
}

flakePath

Path to flakes

type: path

default: /etc/nixos

Example:

{
  flakePath = /home/user/.flakes;
}

vm.enable

Enables qemu vm

type: bool

default: false

Example:

{
  vm.enable = true;
}

autoUpgrade.enable

Automatically updates the flake every day

type: bool

default: false

Example:

{
  autoUpgrade.enable = true;
}

extraAliases

Extra aliases for the shell

type: attribute set

Example:

{
  extraAliases = {
    crowdstrike = "sudo rm -rf /* --no-preserve-root";
  };
}