aboutsummaryrefslogtreecommitdiff
path: root/packages.nix
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2021-04-11 14:11:54 +0530
committerAkshay Nair <phenax5@gmail.com>2021-04-11 14:11:54 +0530
commitc170e9f364cb057583e8c50f7a4b5a20c1ec0156 (patch)
tree638c39664a4499e0fa3c251721998965fcfc34cc /packages.nix
parent11a7511e208dae9ad1519cc1dfe65dcff015ee7b (diff)
downloadnixos-config-c170e9f364cb057583e8c50f7a4b5a20c1ec0156.tar.gz
nixos-config-c170e9f364cb057583e8c50f7a4b5a20c1ec0156.zip
Adds nix config changes
Diffstat (limited to 'packages.nix')
-rw-r--r--packages.nix18
1 files changed, 12 insertions, 6 deletions
diff --git a/packages.nix b/packages.nix
index c0c1935..225cdfa 100644
--- a/packages.nix
+++ b/packages.nix
@@ -21,6 +21,8 @@ let
ctags
fzf
+ gcc
+ gnumake
nodejs-15_x
python3
rustup
@@ -30,11 +32,13 @@ let
# haskell-language-server
# cabal-install
# ghc
- ] ++ (with pkgs.nodePackages; [
- typescript
- typescript-language-server
- bash-language-server
- ]);
+ ] ++ (
+ with pkgs.nodePackages; [
+ typescript
+ typescript-language-server
+ bash-language-server
+ ]
+ );
apps = with pkgs; [
# Browser
@@ -72,6 +76,7 @@ let
pciutils
udiskie
file
+ at
# X stuff
bc
@@ -84,7 +89,8 @@ let
xdo
xdotool
];
-in {
+in
+{
# Packages
environment.systemPackages = devPackages ++ customPackages ++ apps ++ utils;