blob: 6e991b714ed03a34df08d3fd7c1f058f6e4f21d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ pkgs, ...}:
{
programs.partition-manager.enable = true;
environment.systemPackages = with pkgs; [
#For root
nushell
bat
helix
wget
unzip
git
wl-clipboard
pciutils
];
}
|