https://github.com/koralle/dotfiles
My dotfiles
https://github.com/koralle/dotfiles
shell-script tig vim
Last synced: over 1 year ago
JSON representation
My dotfiles
- Host: GitHub
- URL: https://github.com/koralle/dotfiles
- Owner: koralle
- Created: 2024-09-28T15:35:40.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-13T08:16:17.000Z (over 1 year ago)
- Last Synced: 2025-03-13T08:34:33.017Z (over 1 year ago)
- Language: Lua
- Size: 187 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# koralle's dotfiles
## Prerequisites
### Install Nix with Nix Flakes
Please install Nix with Nix Flakes with [nix-installer](https://github.com/DeterminateSystems/nix-installer).
```sh
curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install
```
## Usage
For the first time, since home-manager is not installed, build via the `nix run` command:
```sh
nix run home-manager/master -- switch --flake .#koralle
```
From the second time onwards, since home-manager is installed, the command becomes slightly simplified:
```sh
home-manager switch --flake .#koralle
```
I have further simplified this using just and justfile.
```sh
just switch
```
or
```sh
just s
```