mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 15:15:52 +05:30
14 lines
155 B
Nix
14 lines
155 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
home.packages = with pkgs; [
|
||
|
# CC
|
||
|
gcc
|
||
|
gnumake
|
||
|
cmake
|
||
|
autoconf
|
||
|
automake
|
||
|
libtool
|
||
|
];
|
||
|
}
|