mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 17:46:14 +01:00
aff0158ef7
Signed-off-by: magic_rb <magic_rb@redalder.org>
22 lines
278 B
Nix
22 lines
278 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit
|
|
(lib)
|
|
optional
|
|
;
|
|
in {
|
|
home.packages = with pkgs;
|
|
[
|
|
file
|
|
]
|
|
++ (optional (pkgs.stdenv.system != "armv6l-linux" && pkgs.stdenv.system != "armv7l-linux") git-annex);
|
|
|
|
imports = [
|
|
../bash
|
|
];
|
|
}
|