25 lines
336 B
Nix
25 lines
336 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
ncdu
|
|
fastfetch
|
|
tpm2-tss
|
|
sops
|
|
age
|
|
powertop
|
|
pciutils
|
|
hdparm
|
|
hd-idle
|
|
hddtemp
|
|
smartmontools
|
|
cpufrequtils
|
|
intel-gpu-tools
|
|
snapraid
|
|
mergerfs
|
|
mergerfs-tools
|
|
];
|
|
} |