Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rupurt/nix-home
My nix home-manager configuration. The new Dotfiles!
https://github.com/rupurt/nix-home
Last synced: 21 days ago
JSON representation
My nix home-manager configuration. The new Dotfiles!
- Host: GitHub
- URL: https://github.com/rupurt/nix-home
- Owner: rupurt
- License: mit
- Created: 2023-03-10T18:19:07.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-10T05:12:11.000Z (about 1 month ago)
- Last Synced: 2024-10-10T14:38:32.628Z (about 1 month ago)
- Language: Shell
- Homepage:
- Size: 110 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# nix-home
My [nix](https://nixos.org) [home-manager](https://github.com/nix-community/home-manager) configuration. The new Dotfiles!
## Install
```sh
sh <(curl -L https://raw.githubusercontent.com/rupurt/nix-home/main/install_nix)
```Open a separate shell to activate `nix` after the initial install
```sh
sh -s <(curl -L https://raw.githubusercontent.com/rupurt/nix-home/main/install_home_manager) -- --device kawasaki
```This config uses [zsh](https://www.zsh.org) as the default login shell. Linux hosts will need to
manually add the path to the installed nix version of `zsh` and switch the default login shell```sh
sudo sh -c 'echo $1 >> /etc/shells' -- $(which zsh)
chsh $(which zsh)
```Mac OS X >= Catalina (10.15) uses `zsh` by default
## Contributing
Clone this repository locally
```sh
git clone https://github.com/rupurt/nix-home.git
```Run the default `make` target to execute the [`install_nix`](./install_nix) & [`install_home_manager`](./install_home_manager) scripts
```sh
make
```## License
`nix-home` is released under the [MIT license](./LICENSE.md)