summaryrefslogtreecommitdiff
path: root/modules/nixos/system-packages.nix
blob: be78370563bd2565395af904c2f652fcc7261fee (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, ...}: {
  programs.partition-manager.enable = true;
  environment.systemPackages = with pkgs; [
    #For root
    age
    nix-tree
    nushell
    bat
    # helix
    wget
    nvd
    unzip
    git
    ack #like git-grep but works outside git repos
    wl-clipboard
    pciutils
    usbutils
    dig
    nmap
    waypipe
    wireguard-tools
  ];
  fonts.packages = with pkgs; [
    hack-font
  ];
  # nixpkgs.config.permittedInsecurePackages = [
  #   # "electron-33.4.11"
  # ];
}