summaryrefslogtreecommitdiff
path: root/Omni/Packages.nix
blob: 66c198367be921c9636a513fe4d166119526b945 (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
30
31
32
33
{ 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
  ];
}