diff options
author | sinanmohd <sinan@sinanmohd.com> | 2023-09-02 22:05:18 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2023-09-03 00:42:50 +0530 |
commit | c636397e6062b4d9471a4b5f4e9cf7d34a257131 (patch) | |
tree | 71329d182a7652301e92b19deec3ca40a7ac913f /hosts/kay/configuration.nix | |
parent | 49b8ea0f6813fe197f81a532199b18e0ded424d7 (diff) |
flake: init
Diffstat (limited to 'hosts/kay/configuration.nix')
-rw-r--r-- | hosts/kay/configuration.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/hosts/kay/configuration.nix b/hosts/kay/configuration.nix new file mode 100644 index 0000000..8ad42c8 --- /dev/null +++ b/hosts/kay/configuration.nix @@ -0,0 +1,10 @@ +{ pkgs, ... }: + +{ + imports = [ + ./hardware-configuration.nix + ../common.nix + ]; + + environment.systemPackages = with pkgs; [ tmux ]; +} |