dotfiles/nixos/home-manager/modules/bash/default.nix
2021-01-18 09:00:12 +01:00

12 lines
213 B
Nix

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