2023-03-30 18:15:51 +00:00
|
|
|
{ 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";
|
|
|
|
|
2023-07-18 19:23:55 +00:00
|
|
|
programs.firefox = {
|
|
|
|
enable = true;
|
|
|
|
package = pkgs.firefox-devedition;
|
|
|
|
};
|
|
|
|
|
2023-03-30 18:15:51 +00:00
|
|
|
programs.alacritty = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
settings = {
|
2023-06-23 21:33:07 +00:00
|
|
|
window.opacity = 0.9;
|
|
|
|
|
2023-03-30 18:15:51 +00:00
|
|
|
window.padding = {
|
|
|
|
x = 15;
|
|
|
|
y = 15;
|
|
|
|
};
|
|
|
|
|
|
|
|
font = {
|
|
|
|
size = 12.0;
|
|
|
|
|
2023-07-07 08:22:44 +00:00
|
|
|
normal.family = "IntelOne Mono";
|
|
|
|
italic.style = "Regular";
|
|
|
|
bolditalic.style = "Regular";
|
|
|
|
bold.style = "Regular";
|
2023-03-30 18:15:51 +00:00
|
|
|
|
|
|
|
offset.y = 12;
|
|
|
|
glyph_offset.y = 6;
|
|
|
|
};
|
|
|
|
|
2023-05-03 21:19:59 +00:00
|
|
|
shell = { program = "zsh"; };
|
2023-03-30 18:15:51 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-05-23 10:59:07 +00:00
|
|
|
home.packages = with pkgs; [ discord meslo-lg slack teams vlc wofi xcape zoom-us ];
|
2023-03-30 18:15:51 +00:00
|
|
|
}
|