nix-config/hosts/m920q/default.nix

68 lines
2.0 KiB
Nix
Raw Normal View History

2025-03-24 12:11:44 +01:00
# 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).
{ config, pkgs, ... }:
{
imports =
[
../../modules/system.nix
2025-03-28 17:11:36 +01:00
../../modules/regreet/regreet.nix
2025-03-24 12:11:44 +01:00
# Include the results of the hardware scan.
./hardware-configuration.nix
];
# Bootloader.
boot.loader = {
grub = {
enable = true;
device = "/dev/sda";
};
#efi = {
# canTouchEfiVariables = true;
# efiSysMountPoint = "/boot/efi"; # ← use the same mount point here.
#};
2025-03-24 22:02:26 +01:00
#systemd-boot.enable = true;
2025-03-24 12:11:44 +01:00
};
2025-03-25 01:12:18 +01:00
networking.hostName = "nix"; # Define your hostname.
2025-03-24 12:11:44 +01:00
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Enable networking
networking.networkmanager.enable = true;
2025-03-24 22:25:58 +01:00
networking.defaultGateway = "192.168.2.1";
2025-03-25 01:12:18 +01:00
networking.useDHCP = false;
networking.dhcpcd.enable = false;
networking.nameservers = [
"1.1.1.1"
"1.0.0.1"
"8.8.8.8"
"8.8.4.4"
];
2025-03-24 12:11:44 +01:00
# for Nvidia GPU
#services.xserver.videoDrivers = ["nvidia"];
hardware.opengl.enable = true;
#hardware.nvidia = {
# package = config.boot.kernelPackages.nvidiaPackages.stable;
# modesetting.enable = true;
#};
# 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. Its 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 = "25.05"; # Did you read the comment?
}