nix-config/hosts/minime/configuration.nix

28 lines
628 B
Nix
Raw Normal View History

2025-01-02 19:32:39 +00:00
# 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`).
2025-01-11 03:55:19 +01:00
{
config,
lib,
pkgs,
...
}:
2025-01-02 19:32:39 +00:00
{
2025-01-11 03:55:19 +01:00
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
];
2025-01-02 19:32:39 +00:00
# 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?
}