nixos-config/machines/cray/configuration.nix

45 lines
1.6 KiB
Nix
Raw Normal View History

2022-01-24 21:40:22 +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
# and in the NixOS manual (accessible by running nixos-help).
{ pkgs, ... }:
2022-01-24 21:40:22 +00:00
{
2022-01-25 00:13:49 +00:00
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
../../roles/all.nix
../../modules/luks.nix
../../modules/grub.nix
2022-01-25 00:13:49 +00:00
];
2022-01-24 21:40:22 +00:00
2022-02-16 19:45:12 +00:00
services.xserver.videoDrivers = [ "amdgpu" ];
2022-01-26 19:46:10 +00:00
time.hardwareClockInLocalTime = true; #Be compatible with Windows Dualboot
2022-02-23 22:42:42 +00:00
2022-01-24 21:40:22 +00:00
# The global useDHCP flag is deprecated, therefore explicitly set to false here.
# Per-interface useDHCP will be mandatory in the future, so this generated config
# replicates the default behaviour.
networking.useDHCP = false;
2022-01-25 00:31:56 +00:00
networking.hostName = "cray"; # Define your hostname.
2022-02-14 20:50:52 +00:00
networking.interfaces.enp4s0.useDHCP = true;
networking.interfaces.enp4s0.wakeOnLan.enable = true;
2022-01-24 21:40:22 +00:00
2022-01-25 00:31:56 +00:00
# Enable CUPS
2022-01-24 21:40:22 +00:00
services.printing.enable = true;
2022-01-26 19:45:40 +00:00
services.printing.drivers = with pkgs; [ splix ];
2022-01-24 21:40:22 +00:00
# List packages installed in system profile. To search, run:
environment.systemPackages = with pkgs; [ vim wget curl git ];
2022-01-24 21:40:22 +00:00
# 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 = "21.11"; # Did you read the comment?
}