mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
27f4b1bc33
Signed-off-by: magic_rb <magic_rb@redalder.org>
16 lines
254 B
Nix
16 lines
254 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
|
|
];
|
|
}
|