nix-files/modules/universal/default.nix

34 lines
654 B
Nix
Raw Normal View History

2022-06-08 20:02:28 +00:00
{ pkgs, ... }:
{
imports = [
./allocations.nix
./env
2022-06-02 10:40:14 +00:00
./fs.nix
./net.nix
2022-06-07 00:25:33 +00:00
./secrets.nix
./users.nix
2022-06-10 00:41:03 +00:00
./vpn.nix
];
time.timeZone = "America/Los_Angeles";
2022-06-08 20:02:28 +00:00
fonts = {
enableDefaultFonts = true;
fonts = with pkgs; [ font-awesome twitter-color-emoji hack-font ];
fontconfig.enable = true;
fontconfig.defaultFonts = {
emoji = [ "Font Awesome 6 Free" "Twitter Color Emoji" ];
monospace = [ "Hack" ];
serif = [ "DejaVu Serif" ];
sansSerif = [ "DejaVu Sans" ];
};
};
# allow `nix flake ...` command
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
}