nixos/config/default.nix

13 lines
238 B
Nix
Raw Normal View History

2019-02-26 13:44:40 +01:00
{ config, lib, pkgs, ... }:
{
2019-02-26 13:44:40 +01:00
imports = [
./etc.nix
./locale.nix
./networking.nix
./nix.nix
./users.nix
./zsh.nix
] ++ (if (config.machine.hostName != "Ophanim") then [./fonts.nix] else [./security.nix]);
2019-02-26 13:44:40 +01:00
}