40 lines
789 B
Nix
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" ];
|
|
};
|
|
};
|
|
};
|
|
} |