summaryrefslogtreecommitdiff
path: root/hosts/minime/configuration.nix
blob: 0a36ae6e91207c121908cb41235e86df1bc39729 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).

{ config, lib, pkgs, ... }:

{
  imports =
    [ # Include the results of the hardware scan.
      ./hardware-configuration.nix
    ];

  # Use the systemd-boot EFI boot loader.
  boot.loader.systemd-boot.enable = true;
  boot.loader.efi.canTouchEfiVariables = true;


  # Enable the X11 windowing system.
  services.xserver.enable = false;

  system.stateVersion = "24.11"; # Did you read the comment?

}