summaryrefslogtreecommitdiff
path: root/modules/nixos/system-packages.nix
blob: 9ef1814bfb6e276e16e55c24d15f5a0e8ecfbe72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ pkgs, ...}: {
  programs.partition-manager.enable = true;
  environment.systemPackages = with pkgs; [
    #For root
    nix-tree
    nushell
    bat
    helix
    wget
    unzip
    git
    wl-clipboard
    pciutils
    usbutils
    # r2modman
  ];
  nixpkgs.config.permittedInsecurePackages = [
    "electron-25.9.0"
    "electron-24.8.6"
  ];
}