12 lines
238 B
Nix
12 lines
238 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./etc.nix
|
|
./locale.nix
|
|
./networking.nix
|
|
./nix.nix
|
|
./users.nix
|
|
./zsh.nix
|
|
] ++ (if (config.machine.hostName != "Ophanim") then [./fonts.nix] else [./security.nix]);
|
|
}
|