31 lines
723 B
Nix
31 lines
723 B
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’).
|
||
|
||
{ config, pkgs, ... }:
|
||
|
||
{
|
||
imports =
|
||
[
|
||
# Include the results of the hardware scan.
|
||
./hardware-configuration.nix
|
||
|
||
./roles/admin.nix
|
||
./roles/base.nix
|
||
./roles/desktop.nix
|
||
./roles/dev.nix
|
||
./roles/vpn.nix
|
||
./roles/wireless.nix
|
||
];
|
||
|
||
networking.useDHCP = false;
|
||
|
||
i18n.defaultLocale = "en_US.UTF-8";
|
||
time.timeZone = "Europe/Berlin";
|
||
|
||
services.openssh.enable = true;
|
||
networking.firewall.enable = true;
|
||
|
||
system.stateVersion = "20.03"; # We can stay here
|
||
}
|
||
|