Configuration files for my GNU/Linux installation.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
dotfiles/nix-darwin/home.nix

68 lines
1.3 KiB

{ config, pkgs, ... }:
{
home.username = "elal";
home.homeDirectory = "/Users/elal";
home.stateVersion = "23.05";
programs.home-manager.enable = true;
# Packages to install
home.packages = with pkgs; [
alacritty
neovim
yabai
skhd
];
# Yabai configuration
services.yabai = {
enable = true;
extraConfig = ''
yabai -m config mouse_follows_focus off
yabai -m config focus_follows_mouse autoraise
yabai -m config window_placement second_child
yabai -m config window_topmost on
yabai -m config window_shadow off
yabai -m config window_opacity off
yabai -m config window_border off
'';
};
# skhd configuration
services.skhd = {
enable = true;
extraConfig = ''
# Example skhd configuration
alt - e : echo "Hello world"
'';
};
# Alacritty configuration
programs.alacritty = {
enable = true;
settings = {
font = {
normal = {
family = "Menlo";
size = 12.0;
};
};
window = {
padding = {
x = 2;
y = 2;
};
dynamic_padding = false;
};
dynamic_title = true;
scrollback = 10000;
};
};
# Neovim configuration
programs.neovim = {
enable = true;
viAlias = true;
};
}