Configure elnudrop

This commit is contained in:
Elnu 2023-08-03 17:05:10 -07:00
parent 5b8dbadbb1
commit efa926d33f
11 changed files with 281 additions and 166 deletions

13
hosts/elnudrop/home.nix Normal file
View file

@ -0,0 +1,13 @@
{ 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;
};
}