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

57 lines
1.0 KiB

{ config, pkgs, ... }:
{
home.username = "elal";
home.homeDirectory = "/Users/elal";
4 months ago
home.stateVersion = "22.11";
programs.home-manager.enable = true;
home.packages = with pkgs; [
alacritty
neovim
4 months ago
zsh
oh-my-zsh
skhd
4 months ago
yabai
];
4 months ago
programs.alacritty = {
enable = true;
4 months ago
# Add any Alacritty-specific configurations here
};
4 months ago
programs.neovim = {
enable = true;
4 months ago
viAlias = true;
vimAlias = true;
# Add any Neovim-specific configurations here
};
4 months ago
programs.zsh = {
enable = true;
4 months ago
oh-my-zsh = {
enable = true;
theme = "lambda";
};
4 months ago
# Add any other Zsh-specific configurations here
};
4 months ago
home.file.".config/skhd/skhdrc".text = ''
# Add your skhd keybindings here
'';
home.file.".config/yabai/yabairc".text = ''
# Add your yabai configuration here
'';
# Optionally, you can add Homebrew integration if needed
# homebrew = {
# enable = true;
# onActivation.autoUpdate = true;
# onActivation.cleanup = "zap";
# brews = [];
# casks = [];
# };
}