61 lines
1.9 KiB
Nix
61 lines
1.9 KiB
Nix
# 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’).
|
||
|
||
{ ... }:
|
||
|
||
{
|
||
imports =
|
||
[ # Include the results of the hardware scan.
|
||
./hardware-configuration.nix
|
||
];
|
||
|
||
roles = {
|
||
desktop = {
|
||
enable = true;
|
||
x11Only = true;
|
||
};
|
||
kodi.enable = true;
|
||
nfs-mounts.enable = true;
|
||
printing.enable = true;
|
||
users = {
|
||
enable = true;
|
||
extraGroups = [ "input" "libvirtd" ];
|
||
};
|
||
virtualisation.enable = true;
|
||
};
|
||
|
||
# Use the systemd-boot EFI boot loader.
|
||
boot.loader.systemd-boot.enable = true;
|
||
boot.loader.efi.canTouchEfiVariables = true;
|
||
boot.loader.grub.useOSProber = true;
|
||
|
||
networking = {
|
||
hostName = "z790prors-nix"; # Define your hostname.
|
||
domain = "oglehome";
|
||
defaultGateway = "10.0.0.1";
|
||
nameservers = [ "10.0.0.1" ];
|
||
|
||
# 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.
|
||
useDHCP = false;
|
||
|
||
interfaces.enp3s0.ipv4.addresses = [{
|
||
address = "10.0.0.37";
|
||
prefixLength = 24;
|
||
}];
|
||
};
|
||
|
||
# TODO: Figure out something with this
|
||
nix.settings.secret-key-files = /root/cache-priv-key.pem;
|
||
|
||
# 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. It‘s 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?
|
||
}
|