mailtngbert/configuration.nix

26 lines
551 B
Nix
Raw Normal View History

2022-02-24 22:28:59 +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).
2022-02-24 21:25:18 +01:00
2022-02-24 22:28:59 +01:00
{ config, pkgs, lib, ... }:
{
imports =
[
./modules/base.nix
./modules/network.nix
2022-02-25 00:27:47 +01:00
./modules/sops.nix
2022-02-24 22:28:59 +01:00
];
2022-02-24 21:25:18 +01:00
nix = {
useSandbox = false;
extraOptions = "experimental-features = nix-command flakes";
package = pkgs.nixFlakes;
};
2022-02-24 22:28:59 +01:00
time.timeZone = "Europe/Berlin";
system.stateVersion = "20.11";
2022-02-24 21:25:18 +01:00
}
2022-02-24 22:28:59 +01:00