diff options
author | sinanmohd <sinan@firemail.cc> | 2023-07-01 08:54:02 +0530 |
---|---|---|
committer | sinanmohd <sinan@firemail.cc> | 2023-07-01 08:59:44 +0530 |
commit | 815dda6ff68f91aeacb18931fd7800791ddcb4f9 (patch) | |
tree | 1b03c7dffe9f1488c1ed80c768d3581f76388fe4 | |
parent | 37dc759b1d5e208bfbec2a41905e1940d052bb6b (diff) |
hardware/kay: initial commit
-rw-r--r-- | configuration.nix | 1 | ||||
-rw-r--r-- | hardware/kay.nix | 5 |
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 ]; +} |