Skip to content
/ dotskel Public

My personal configuration files built using home-manager.

Notifications You must be signed in to change notification settings

knl/dotskel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This repository holds my dotfiles setup. It is based on home-manager, a Nix based approach to handling all dependencies and setup. This means that all dotfiles are actually symlinked to the nix store, and are immutable. This in turn means I’ll have to deploy changes every time I want to change something, but I can live with it.

https://github.com/knl/dotskel/actions/workflows/build.yml/badge.svg

Installation

Command Line Tools

Command Line Tools are needed to build various things, and bring in git.

xcode-select --install

nix

The new installer from Determinate Systems is really good, and the option to use single user mode disappeared from all installers, so:

curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install
source "$HOME/.nix-profile/etc/profile.d/nix.sh"

Applications

These tools can’t be installed by home-manager, because they are macOS applications. So, install them manually.

Misc

One can’t live without good fonts. I prefer Iosevka: Iosevka Term SS08. This font will be installed by home-manager.

dotfiles

Finally, just run the following command:

nix-shell
home-manager switch

Afterwards, it’s just riding on the good wave of direnv and aliases:

z skel
stash; gl --rebase; unstash
d reload
hm switch

References