nix-config/hosts/elnudrop/home.nix
2023-08-03 17:05:10 -07:00

13 lines
No EOL
280 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;
};
}