summary refs log tree commit diff stats
path: root/system
diff options
context:
space:
mode:
authorAlan Pearce2019-10-04 23:26:28 +0200
committerAlan Pearce2019-10-05 00:53:02 +0200
commit725ce0a79072b281045fe8c7c61fa244dd11a79b (patch)
treef44412569d810753c4cbe1f6a852c6746138849c /system
parent431fd28d2d60fcc5bc28ffbab5c7ccbd9cec2832 (diff)
downloadnixfiles-725ce0a79072b281045fe8c7c61fa244dd11a79b.tar.lz
nixfiles-725ce0a79072b281045fe8c7c61fa244dd11a79b.tar.zst
nixfiles-725ce0a79072b281045fe8c7c61fa244dd11a79b.zip
Re-organise development configuration
Diffstat (limited to 'system')
-rw-r--r--system/marvin.nix2
-rw-r--r--system/modules/development/base.nix28
-rw-r--r--system/modules/development/lisp.nix13
-rw-r--r--system/modules/kubernetes.nix (renamed from system/modules/development/kubernetes.nix)0
-rw-r--r--system/prefect.nix2
-rw-r--r--system/satoshipad.nix1
-rw-r--r--system/trillian.nix1
7 files changed, 0 insertions, 47 deletions
diff --git a/system/marvin.nix b/system/marvin.nix
index 8f070734..e13a7d6a 100644
--- a/system/marvin.nix
+++ b/system/marvin.nix
@@ -8,8 +8,6 @@
     ./modules/configuration/british-english.nix
     ./modules/configuration/nix.nix
     ./modules/configuration/user.nix
-    ./modules/development/base.nix
-    ./modules/development/lisp.nix
     ./modules/hardware/adb.nix
     ./modules/hardware/audio.nix
     ./modules/hardware/qwerty.nix
diff --git a/system/modules/development/base.nix b/system/modules/development/base.nix
deleted file mode 100644
index 63ee5b72..00000000
--- a/system/modules/development/base.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ config, pkgs, ... }:
-
-{ environment.systemPackages = with pkgs; [
-    checkbashisms
-    editorconfig-core-c
-    go
-
-    wrk
-
-    ag
-    (ripgrep.override { withPCRE2 = true; })
-
-    httpie
-    jq
-
-    discount
-  ] ++ (
-    if !stdenv.isDarwin
-    then [
-      whois
-      ldns
-      httping
-      http-prompt
-      firefox-devedition-bin
-    ] else [
-    ]
-  );
-}
diff --git a/system/modules/development/lisp.nix b/system/modules/development/lisp.nix
deleted file mode 100644
index dc521feb..00000000
--- a/system/modules/development/lisp.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{ config, pkgs, ... }:
-
-{ environment.systemPackages = with pkgs; [
-    ccl
-    sbcl
-    lispPackages.quicklisp
-    asdf
-    cl-launch
-
-    dust
-    pixie
-  ];
-}
diff --git a/system/modules/development/kubernetes.nix b/system/modules/kubernetes.nix
index 692e46d6..692e46d6 100644
--- a/system/modules/development/kubernetes.nix
+++ b/system/modules/kubernetes.nix
diff --git a/system/prefect.nix b/system/prefect.nix
index 78fd68d6..d6d9aed2 100644
--- a/system/prefect.nix
+++ b/system/prefect.nix
@@ -9,8 +9,6 @@
     ./modules/configuration/british-english.nix
     ./modules/configuration/nixos.nix
     ./modules/configuration/user.nix
-    ./modules/development/base.nix
-    ./modules/development/lisp.nix
     ./modules/hardware/audio.nix
     ./modules/hardware/bare-metal.nix
     ./modules/hardware/mouse.nix
diff --git a/system/satoshipad.nix b/system/satoshipad.nix
index 183393fc..98849c35 100644
--- a/system/satoshipad.nix
+++ b/system/satoshipad.nix
@@ -10,7 +10,6 @@
     ./modules/configuration/british-english.nix
     ./modules/configuration/nix.nix
     ./modules/configuration/user.nix
-    ./modules/development/base.nix
     ./modules/hardware/audio.nix
     ./modules/hardware/systemd-boot.nix
     ./modules/hardware/keyboardio-model01.nix
diff --git a/system/trillian.nix b/system/trillian.nix
index 93ad41e1..e7fbb7f9 100644
--- a/system/trillian.nix
+++ b/system/trillian.nix
@@ -4,7 +4,6 @@
   imports = [
     ./private/default.nix
 
-    ./modules/development/base.nix
     ./modules/programs/accounting.nix
     ./modules/programs/shell.nix
   ];