Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wittionary/niche-os
My nix OS configurations
https://github.com/wittionary/niche-os
nixos nixos-configuration
Last synced: 6 days ago
JSON representation
My nix OS configurations
- Host: GitHub
- URL: https://github.com/wittionary/niche-os
- Owner: Wittionary
- License: mit
- Created: 2024-04-15T17:41:20.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-01-13T06:04:17.000Z (9 days ago)
- Last Synced: 2025-01-13T07:19:36.967Z (8 days ago)
- Topics: nixos, nixos-configuration
- Language: Nix
- Homepage:
- Size: 96.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# niche-os
My nix OS configurations## stuff you should know
- This uses flakes
- This is unstable - by nature of it using the unstable `nixpkgs` and `home-manager`## getting started
Assumes a fresh state; nothing with an existing customized configuration.On nixOS:
On nixOS on WSL:
```bash
cd $HOME
mkdir git
cd git/
nix run nixpkgs#git clone https://github.com/Wittionary/niche-os.git --extra-experimental-features nix-command --extra-experimental-features flakes
cd niche-os/
# backup default configuration
# delete nixos directory - there's no hardware-configuration.nix to worry about
sudo rm /etc/nixos/
# set symlink
sudo ln --symbolic --verbose /home/wittnix/git/niche-os/ /etc/nixos
# build nixOS config
sudo nixos-rebuild switch --flake .#stormtrooper # prev: nixos
# build home-manager config
home-manager switch --flake .#witt@stormtrooper```