nixos-config/modules/system/default.nix
2024-07-13 02:52:19 +09:00

40 lines
789 B
Nix

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