nixos-config/modules/system/default.nix
2024-07-11 14:51:17 +09:00

38 lines
719 B
Nix

{ pkgs, ... }:
{
imports = [
./boot
./experimental
./network
./desktop
./printing
./bluetooth
./audio
];
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
wget
gparted
nh
];
fonts = {
enableDefaultPackages = true;
packages = with pkgs; [
noto-fonts
nerdfonts
font-awesome
];
fontconfig = {
defaultFonts = {
serif = [ "Hack Nerd Font" ];
sansSerif = [ "DejaVuSansM Nerd Font" ];
monospace = [ "JetBrainsMono Nerd Font" ];
};
};
};
}