dotfiles/home-manager/modules/profiles/server.nix
magic_rb 915e1544ee
Add git-annex and file to servers and workstations
Signed-off-by: magic_rb <magic_rb@redalder.org>
2023-11-18 13:44:31 +01:00

16 lines
150 B
Nix

{ config, pkgs, lib, ... }:
let
inherit (lib)
;
in
{
home.packages = with pkgs; [
git-annex
file
];
imports = [
../bash
];
}