1
0
Fork 0

Install tmux on servers

This commit is contained in:
Aires 2024-05-04 21:20:11 -04:00
parent 9253d98ec7
commit 51b7e343ee
2 changed files with 5 additions and 4 deletions

View file

@ -117,11 +117,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1714679908, "lastModified": 1714865296,
"narHash": "sha256-KzcXzDvDJjX34en8f3Zimm396x6idbt+cu4tWDVS2FI=", "narHash": "sha256-02r2Qzh4fGYBPB/3Lj8vwPMtE6H/UchZnN7A/dQMHIA=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "9036fe9ef8e15a819fa76f47a8b1f287903fb848", "rev": "e0825ea2112d09d9f0680833cd716f6aee3b973f",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -9,6 +9,7 @@ in
config = mkIf (role == "server") { config = mkIf (role == "server") {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
htop htop
tmux
]; ];
}; };
} }