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: 4 months ago
JSON representation
My NixOS (flake) configuration
- Host: GitHub
- URL: https://github.com/marcuswhybrow/nixos
- Owner: marcuswhybrow
- Created: 2023-03-20T19:19:21.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-03T22:34:27.000Z (9 months ago)
- Last Synced: 2025-01-25T20:26:34.214Z (5 months ago)
- Topics: alacritty-config, dunstrc, neovim, nixos-configuration, rofi-config, sway-config, waybar
- Language: Nix
- Homepage:
- Size: 406 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```