Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nekowinston/dotfiles
❄️ mi casa es tu casa [mirrored repository]
https://github.com/nekowinston/dotfiles
dotfiles i3 linux macos neovim nix-darwin nixos nixos-configuration sketchybar wezterm yabai
Last synced: about 20 hours ago
JSON representation
❄️ mi casa es tu casa [mirrored repository]
- Host: GitHub
- URL: https://github.com/nekowinston/dotfiles
- Owner: nekowinston
- License: mit
- Created: 2022-07-18T18:57:57.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-18T20:04:45.000Z (about 1 month ago)
- Last Synced: 2025-01-16T09:33:39.727Z (8 days ago)
- Topics: dotfiles, i3, linux, macos, neovim, nix-darwin, nixos, nixos-configuration, sketchybar, wezterm, yabai
- Language: Nix
- Homepage: https://code.winston.sh/winston/dotfiles
- Size: 4.32 MB
- Stars: 66
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# winston's dotfiles
[![flake check status](https://img.shields.io/github/actions/workflow/status/nekowinston/dotfiles/check.yml?label=flake%20check&logo=nixos&logoColor=%23fff&style=flat-square&color=f5c2e7)](https://github.com/nekowinston/dotfiles/actions/workflows/check.yml)
[![GitHub stars](https://img.shields.io/github/stars/nekowinston/dotfiles?style=flat-square&color=f5c2e7)](https://github.com/nekowinston/dotfiles/stargazers)
[![commit activity](https://img.shields.io/github/commit-activity/w/nekowinston/dotfiles?style=flat-square&label=commits&color=f5c2e7)](https://github.com/nekowinston/dotfiles/commits)
[![MIT license](https://img.shields.io/github/license/nekowinston/dotfiles?style=flat-square&color=f5c2e7)](https://github.com/nekowinston/dotfiles/blob/main/LICENSE)Welcome to my cross-platform dots.
Focused on improving productivity, and reducing the pain of switching between operating systems.
Minimal rice, with a focus on getting the annoying stuff out of the way.### Overview
Here's what you can find:
- **[WezTerm](https://wezfurlong.org/wezterm/)** as my terminal, with tmux-like keybindings
- **[Starship](https://starship.rs)** as my prompt
- **Firefox** with privacy-centered settings, though I don't use it heavily anymore.
- My **GPG** & **[Agenix](https://github.com/ryantm/agenix)** settings
- Other random bits of config tools I've collected over the years
- macOS:
- **[Yabai](https://github.com/koekeishiya/yabai)** as my WM
- Linux:
- **[sway](https://swaywm.org)** as my WM**[Neovim](https://neovim.io)** used to be part of this repository, but now my config is fully reproducible & stored over [here](https://github.com/nekowinston/neovim.drv).
### Notes for a new install
This flake technically has an impurity at its core, because it assumes that it will be stored in `~/.config/flake` and will create symlinks pointing there.
This is so I can edit some dotfiles (e.g. VSCode `settings.json`) in place and have programs hot reload them.#### Fixing the initial git clone
You might need to fix LFS and/or Git-Crypt not being initialized after cloning:
```console
$ git lfs pull
$ curl https://winston.sh/pub.txt | gpg --import
$ git crypt unlock
```#### macOS
##### Install the [Xcode Command Line Tools](https://developer.apple.com/download/all/)
```console
$ xcode-select --install
```##### Install [Homebrew](https://brew.sh)
```console
$ curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh | bash
```##### Exclude `/nix/` from Time Machine:
```console
$ sudo tmutil addexclusion -v /nix
```### Building the flake
```console
$ nix --experimental-features "nix-command flakes" develop # enter the devShell
$ just switch
```I personally use [`nix-direnv`](https://github.com/nix-community/nix-direnv) to automatically enter this devShell on my machines.