nixos-config/system/default.nix

45 lines
761 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
];
2019-12-12 15:38:14 +01:00
fonts.fontconfig.localConf = ''
<fontconfig>
<alias binding="weak">
<family>sans-serif</family>
<prefer>
<family>emoji</family>
</prefer>
</alias>
<alias binding="weak">
<family>serif</family>
<prefer>
<family>emoji</family>
</prefer>
</alias>
</fontconfig>
'';
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
}