Felix Schröter
f3fb292dd1
- add nur - set firefox as main browser - move browsers into separate modules
45 lines
761 B
Nix
45 lines
761 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardened.nix
|
|
./i18n.nix
|
|
./nix.nix
|
|
./nur.nix
|
|
./vpn.nix
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
wget
|
|
curl
|
|
neovim
|
|
];
|
|
|
|
fonts.fonts = with pkgs; [
|
|
fira-code
|
|
noto-fonts
|
|
noto-fonts-extra
|
|
noto-fonts-cjk
|
|
noto-fonts-emoji
|
|
];
|
|
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>
|
|
'';
|
|
|
|
services.printing.enable = true;
|
|
services.fwupd.enable = true;
|
|
}
|