30 lines
434 B
Nix
30 lines
434 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./baseline.nix
|
|
./yubikey.nix
|
|
./audio.nix
|
|
./graphics.nix
|
|
./virtualisation.nix
|
|
./android.nix
|
|
./users.nix
|
|
./bluetooth.nix
|
|
./net.nix
|
|
./steam.nix
|
|
];
|
|
|
|
fonts.packages = with pkgs; [
|
|
jetbrains-mono
|
|
noto-fonts
|
|
noto-fonts-cjk-sans
|
|
noto-fonts-emoji
|
|
noto-fonts-extra
|
|
nerd-fonts.fira-code
|
|
nerd-fonts.droid-sans-mono
|
|
];
|
|
}
|