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