summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configuration.nix1
-rw-r--r--hardware/kay.nix5
2 files changed, 5 insertions, 1 deletions
diff --git a/configuration.nix b/configuration.nix
index e6ade19..58b6c19 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -40,7 +40,6 @@ in
# system
environment.systemPackages = with pkgs; [
- tmux
file
openssl
git
diff --git a/hardware/kay.nix b/hardware/kay.nix
new file mode 100644
index 0000000..57b6d2e
--- /dev/null
+++ b/hardware/kay.nix
@@ -0,0 +1,5 @@
+{ config, pkgs, ... }:
+
+{
+ environment.systemPackages = [ pkgs.tmux ];
+}