nixos-config/system/default.nix

35 lines
625 B
Nix
Raw Normal View History

2019-10-19 12:55:35 +02:00
{ config, pkgs, ... }:
{
2020-03-13 18:45:29 +01:00
imports = [
2020-08-14 23:19:21 +02:00
./hardened.nix
2020-03-13 18:45:29 +01:00
./i18n.nix
./nix.nix
./nur.nix
2020-05-22 18:16:21 +02:00
./vpn.nix
2020-03-13 18:45:29 +01:00
];
2019-10-19 12:55:35 +02:00
environment.systemPackages = with pkgs; [
wget
curl
neovim
];
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
}