Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcuswhybrow/nixos
My NixOS (flake) configuration
https://github.com/marcuswhybrow/nixos
alacritty-config dunstrc neovim nixos-configuration rofi-config sway-config waybar
Last synced: 27 days ago
JSON representation
My NixOS (flake) configuration
- Host: GitHub
- URL: https://github.com/marcuswhybrow/nixos
- Owner: marcuswhybrow
- Created: 2023-03-20T19:19:21.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-17T13:55:11.000Z (3 months ago)
- Last Synced: 2024-09-17T22:19:10.520Z (3 months ago)
- Topics: alacritty-config, dunstrc, neovim, nixos-configuration, rofi-config, sway-config, waybar
- Language: Nix
- Homepage:
- Size: 388 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
NixOS is the declaritive linux distribution composed of immutable packages defined in a functional syntax called Nix.
# New System Procedure
```bash
# Clone this repository
nix profile install nixpkgs#gh --extra-experimental-features "nix-command flakes"
nix profile install github:marcuswhybrow/git --extra-experimental-features "nix-command flakes"
mkdir ~/Repos
cd ~/Repos
gh auth login
git clone [email protected]:marcuswhybrow/nixos.git# Replace default configuration with symlink to this repo
sudo mv /etc/nixos/configuration.nix /etc/nixos/configuration.nix.old
sudo ln -s ~/Repos/nixos/flake.nix /etc/nixos/flake.nix# For a first time install specify the exact flake and system name.
sudo nixos-rebuild switch --flake ~/Repos/nixos#SYSTEM_NAME```