nixos-config/system/default.nix

25 lines
579 B
Nix
Raw Normal View History

2019-10-19 12:55:35 +02:00
{ config, pkgs, ... }:
{
2020-09-23 13:19:19 +02:00
imports = [ ./hardened.nix ./i18n.nix ./nix.nix ./vpn.nix ];
2020-03-13 18:45:29 +01:00
2020-09-23 13:19:19 +02:00
environment.systemPackages = with pkgs; [ wget curl neovim ];
2019-10-19 12:55:35 +02:00
2019-10-21 17:51:57 +02:00
fonts.fonts = with pkgs; [
2020-03-24 00:55:49 +01:00
fira-code
noto-fonts
noto-fonts-extra
noto-fonts-cjk
noto-fonts-emoji
2019-10-21 17:51:57 +02:00
];
2020-09-11 14:58:56 +02:00
fonts.fontconfig.defaultFonts = {
serif = [ "Noto Serif" "Noto Color Emoji" ];
sansSerif = [ "Noto Sans" "Noto Color Emoji" ];
monospace = [ "Fira Code" "Noto Color Emoji" ];
emoji = [ "Noto Color Emoji" ];
};
2019-10-19 12:55:35 +02:00
services.printing.enable = true;
2019-12-12 15:40:55 +01:00
services.fwupd.enable = true;
2019-10-19 12:55:35 +02:00
}