chore: remove apollo configuration

Remove the configuraton for my `apollo` laptop as I don't use it
regularly and I want to simplify my configuration before I refactor it.
This commit is contained in:
Oliver Davies 2023-08-04 20:40:56 +01:00
parent 212b62e164
commit 8f4aa7bbfc
5 changed files with 0 additions and 279 deletions

View file

@ -1,38 +0,0 @@
{ config, lib, pkgs, ... }:
{
imports = [
./modules/common.nix
./modules/git.nix
./modules/home-manager.nix
./modules/tmux.nix
./modules/zsh.nix
];
home.stateVersion = "22.05";
home.username = "opdavies";
home.homeDirectory = "/home/opdavies";
programs.alacritty = {
enable = true;
settings = {
window.padding = {
x = 15;
y = 15;
};
font = {
size = 12.0;
normal.family = "JetBrainsMono Nerd Font";
offset.y = 12;
glyph_offset.y = 6;
};
shell = { program = "zsh"; };
};
};
}