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