dotfiles/nixos/home-manager/modules/bash/default.nix
2020-12-26 23:58:39 +01:00

12 lines
208 B
Nix

{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom }:
{ config, lib, pkgs, ... }:
{
home.packages = with custom; [
emacsclient-remote
];
home.file = {
".bashrc".source = ./.bashrc;
};
}