network-debugger/configuration.nix

49 lines
1.3 KiB
Nix
Raw Normal View History

2024-01-09 16:49:56 +00:00
{ pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
./zfs-config.nix
./common
./common/sites/gifford
./common/users/scott
./common/desktop
./common/network-debugging.nix
2024-01-09 16:49:56 +00:00
];
boot.loader.grub = {
enable = true;
device = "/dev/sdb"; # change after install!
2024-01-09 16:49:56 +00:00
};
networking = {
hostName = "network-debugger"; # Define your hostname.
hostId = "847d8755"; # required by ZFS
firewall.enable = false;
networkmanager.enable = true;
2024-01-09 16:49:56 +00:00
};
# Set your time zone.
time.timeZone = "America/New_York";
2024-01-09 16:49:56 +00:00
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
console = {
# keyMap = "us";
useXkbConfig = true; # use xkbOptions in tty.
};
services.xserver.layout = "us";
# 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 = "23.11"; # Did you read the comment?
2024-01-09 16:49:56 +00:00
}