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

261 lines
5.8 KiB

{ config, pkgs, ... }:
{
4 months ago
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = "elal";
home.homeDirectory = "/Users/elal";
4 months ago
# This value determines the Home Manager release that your configuration is
# compatible with. This helps avoid breakage when a new Home Manager release
# introduces backwards incompatible changes.
#
# You should not change this value, even if you update Home Manager. If you do
# want to update the value, then make sure to first check the Home Manager
# release notes.
home.stateVersion = "24.05"; # Please read the comment before changing.
4 months ago
nixpkgs = {
# You can add overlays here
overlays = [
# If you want to use overlays exported from other flakes:
# neovim-nightly-overlay.overlays.default
# Or define it inline, for example:
# (final: prev: {
# hi = final.hello.overrideAttrs (oldAttrs: {
# patches = [ ./change-hello-to-hi.patch ];
# });
# })
];
# Configure your nixpkgs instance
config = {
# Disable if you don't want unfree packages
allowUnfree = true;
# Workaround for https://github.com/nix-community/home-manager/issues/2942
allowUnfreePredicate = _: true;
};
};
imports = [
4 months ago
# Modules
./modules/yabai.nix
./modules/skhd.nix
];
4 months ago
# The home.packages option allows you to install Nix packages into your
# environment.
4 months ago
home.packages = with pkgs; [
4 months ago
# # Adds the 'hello' command to your environment. It prints a friendly
# # "Hello, world!" when run.
# pkgs.hello
# # It is sometimes useful to fine-tune packages, for example, by applying
# # overrides. You can do that directly here, just don't forget the
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of
# # fonts?
# (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; })
4 months ago
# # You can also create simple shell scripts directly inside your
# # configuration. For example, this adds a command 'my-hello' to your
# # environment:
# (pkgs.writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!"
# '')
4 months ago
# Programs
slack
zathura
irssi
spotify
4 months ago
discord
4 months ago
# Utils
stow
curl
wget
4 months ago
ffmpeg
gnupg
jq
tmux
4 months ago
htop
4 months ago
ripgrep
4 months ago
sshfs
4 months ago
# Cringe
pfetch
neofetch
4 months ago
# Tools
nmap
dig
# Development stuff
4 months ago
gh
# c/c++
gcc
4 months ago
4 months ago
# haskell
ghc
4 months ago
haskell-language-server
4 months ago
haskellPackages.cabal-install
4 months ago
4 months ago
# rust
rustc
rustup
4 months ago
# js/ts/node/web
nodejs_22
nodePackages.pnpm
4 months ago
# golang
go
4 months ago
4 months ago
# lua <3 (divine intellect)
lua
4 months ago
# ruby
ruby
4 months ago
# julia
julia_19-bin # compat
4 months ago
# py
python3
python312Packages.pip
4 months ago
# formatters
shfmt
nodePackages.prettier
black
clang-tools # clang-format
nixpkgs-fmt
stylish-haskell
# DE/WM/Ricing
yabai # wm
skhd # key mngr
4 months ago
# Fonts
nerdfonts
];
4 months ago
# Home Manager is pretty good at managing dotfiles. The primary way to manage
# plain files is through 'home.file'.
home.file = {
# # Building this configuration will create a copy of 'dotfiles/screenrc' in
# # the Nix store. Activating the configuration will then make '~/.screenrc' a
# # symlink to the Nix store copy.
4 months ago
4 months ago
# ".screenrc".source = dotfiles/screenrc;
# # You can also set the file content immediately.
# ".gradle/gradle.properties".text = ''
# org.gradle.console=verbose
# org.gradle.daemon.idletimeout=3600000
# '';
};
4 months ago
# Home Manager can also manage your environment variables through
# 'home.sessionVariables'. These will be explicitly sourced when using a
# shell provided by Home Manager. If you don't want to manage your shell
# through Home Manager then you have to manually source 'hm-session-vars.sh'
# located at either
#
# ~/.nix-profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# ~/.local/state/nix/profiles/profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# /etc/profiles/per-user/elal/etc/profile.d/hm-session-vars.sh
#
home.sessionVariables = {
# EDITOR = "emacs";
};
4 months ago
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
4 months ago
programs.git = {
package = pkgs.gitFull;
enable = true;
userName = "Elias Almqvist";
userEmail = "elalmqvist@gmail.com";
lfs.enable = true;
ignores = [
".dir-locals.el"
".envrc"
".DS_Store"
];
signing.signByDefault = true;
signing.key = "E31A99CE3E75A158";
extraConfig = {
commit.gpgsign = true;
};
};
4 months ago
programs.zsh = {
enable = true;
4 months ago
shellAliases = {
dev = "cd $HOME/Projects/almtech/exa/";
xcopy = "pbcopy";
xpaste = "pbpaste";
ccd = "echo $PWD | xcopy";
cr = "cd $(git rev-parse --show-toplevel)";
};
4 months ago
oh-my-zsh = {
enable = true;
4 months ago
theme = "half-life";
4 months ago
plugins = [ "git" "macos" ];
4 months ago
extraConfig = ''
# Homebrew
export PATH="/usr/local/bin:/opt/homebrew/bin:$PATH"
# Nix
if [ -e /etc/profile.d/nix.sh ]; then . /etc/profile.d/nix.sh; fi
4 months ago
# TERM
export TERM=xterm-xfree86
4 months ago
'';
};
};
4 months ago
programs.alacritty = {
enable = true;
4 months ago
settings = {
font = {
normal = {
family = "Hack Nerd Font";
style = "Regular";
};
bold = {
family = "Hack Nerd Font";
style = "Bold";
};
italic = {
family = "Hack Nerd Font";
style = "Italic";
};
size = 12;
};
window = {
padding = {
x = 8;
y = 8;
};
};
};
4 months ago
};
programs.neovim = {
enable = true;
viAlias = true;
vimAlias = true;
4 months ago
defaultEditor = true;
4 months ago
};
}