hosts: add elnucentre

This commit is contained in:
Elnu 2023-11-07 10:55:54 -08:00
parent 70474fac8e
commit 4835d30b62
5 changed files with 112 additions and 0 deletions

13
hosts/elnucentre/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;
};
}