summaryrefslogtreecommitdiff
path: root/Omni/Packages.nix
blob: 4f745124e7d92caaad8e353d0094926b47ae860c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{pkgs, ...}:
# Base set of packages to be expected everywhere.
with pkgs; {
  fonts.fonts = with pkgs; [
    google-fonts
    mononoki
    source-code-pro
    fantasque-sans-mono
    hack-font
    fira
    fira-code
    fira-code-symbols
  ];

  environment.systemPackages = [
    file
    fd
    gitAndTools.gitMinimal
    htop
    openssl
    ranger
    inetutils
    traceroute
    vim
    vnstat
    wireguard-tools
    wget
  ];
}