mirror of
https://github.com/davegallant/nix-config
synced 2025-08-07 05:02:28 +00:00
Refactor packages
This commit is contained in:
26
packages/linux.nix
Normal file
26
packages/linux.nix
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
inherit (pkgs) stdenv;
|
||||
in {
|
||||
# System-wide packages to install.
|
||||
environment.systemPackages = with pkgs; let
|
||||
linux = [
|
||||
cryptsetup
|
||||
glibcLocales
|
||||
iotop
|
||||
linuxPackages.perf
|
||||
netdata
|
||||
pinentry-curses
|
||||
rustup
|
||||
strace
|
||||
tailscale
|
||||
];
|
||||
in
|
||||
linux;
|
||||
|
||||
programs.gnupg.agent.enable = true;
|
||||
}
|
Reference in New Issue
Block a user