nix-config/hosts/elnucentre/home.nix
2023-11-07 10:55:54 -08:00

13 lines
281 B
Nix

{ lib, ... }:
{
imports = [
../../modules/bash
../../modules/neovim
];
# Disable greeter, which is getting run twice somehow
programs.bash = with import ../../modules/bash/bashrc.nix; {
bashrcExtra = lib.mkForce bashrcExtra;
profileExtra = greeter;
};
}