diff options
author | sinanmohd <sinan@sinanmohd.com> | 2023-07-01 08:54:02 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2023-07-01 08:59:44 +0530 |
commit | c8febbd7e2a726d31906d2e4f77810adbb8aa4a4 (patch) | |
tree | 1b03c7dffe9f1488c1ed80c768d3581f76388fe4 | |
parent | c9be1f0b64a32f7d6c638a8cfffced239df80a80 (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 ]; +} |