mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 01:26:14 +01:00
915e1544ee
Signed-off-by: magic_rb <magic_rb@redalder.org>
16 lines
150 B
Nix
16 lines
150 B
Nix
{ config, pkgs, lib, ... }:
|
|
let
|
|
inherit (lib)
|
|
;
|
|
in
|
|
{
|
|
home.packages = with pkgs; [
|
|
git-annex
|
|
file
|
|
];
|
|
|
|
imports = [
|
|
../bash
|
|
];
|
|
}
|