Clean up montalin configuration

This commit is contained in:
Fabian Hauser 2020-06-27 23:20:14 +02:00
parent 8424e0875c
commit 4c5c5a42ca
8 changed files with 156 additions and 106 deletions

26
host/montalin/default.nix Normal file
View file

@ -0,0 +1,26 @@
{ config, pkgs, ... }:
{
imports = [
./networking.nix
./filesystems.nix
./database.nix
./backup.nix
./applications
../hardware/nuc.nix
../role/base
../role/dropbear
];
# Set your time zone.
# time.timeZone = "Europe/Amsterdam";
# This value determines the NixOS release with which your system is to be
# compatible, in order to avoid breaking some software such as database
# servers. You should change this only after NixOS release notes say you
# should.
system.stateVersion = "19.09"; # Did you read the comment?
}