Oliver Davies
7235dc60dd
- Remove the Ansible files. - Move the Nix files to the root level of the repository. Refs: #39
41 lines
621 B
Nix
41 lines
621 B
Nix
{ 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";
|
|
};
|
|
};
|
|
};
|
|
}
|