Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Mic92/dotfiles
My NixOS dotfiles
https://github.com/Mic92/dotfiles
build-with-buildbot hacktoberfest managed-by-renovate nix-flake nixos-configuration nixos-dotfiles
Last synced: 8 days ago
JSON representation
My NixOS dotfiles
- Host: GitHub
- URL: https://github.com/Mic92/dotfiles
- Owner: Mic92
- License: mit
- Created: 2020-08-06T05:40:40.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-04-30T09:56:56.000Z (7 months ago)
- Last Synced: 2024-05-02T00:16:33.626Z (7 months ago)
- Topics: build-with-buildbot, hacktoberfest, managed-by-renovate, nix-flake, nixos-configuration, nixos-dotfiles
- Language: Nix
- Homepage:
- Size: 8.19 MB
- Stars: 450
- Watchers: 8
- Forks: 33
- Open Issues: 1
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE.md
Awesome Lists containing this project
README
# My personal bootstrap process
For bootstraping on
[legacy operating systems](https://github.com/Mic92/dotfiles/wiki#bootstrap-for-legacy-operating-systems)# Bootstrap dotfiles when having nix
```console
$ nix run github:Mic92/dotfiles
```# Bootstrap homeshick without nix
```console
$ nix-shell -p git
nix-shell> git clone --depth=1 https://github.com/andsens/homeshick.git $HOME/.homesick/repos/homeshick
nix-shell> alias homeshick="$HOME/.homesick/repos/homeshick/bin/homeshick"
nix-shell> homeshick clone https://github.com/Mic92/dotfiles.git
```# Bootstrap single user nix:
```console
$ install -d -m755 -o joerg -g joerg /nix
$ curl https://nixos.org/nix/install | sh
```# Bootstrap multi-user nix:
```console
$ curl https://nixos.org/nix/install -o install
$ sh ./install --daemon
```# Bootstrap home-manager
```console
$ hm switch
```# Use my nvim configuration as a standalone without installing dotfiles
```console
$ nix run 'github:Mic92/dotfiles#nvim'
```# Need help with nix?
Drop me an email at [email protected] to book consultation on Nix/NixOS/DevOps
related topics