1
0
Fork 0
Nix Configuration Files
Find a file
2026-03-22 00:10:43 +01:00
environment
host
shared
users stuff 2026-03-21 23:36:24 +01:00
.gitignore
configuration.nix
flake.lock stuff 2026-03-22 00:10:43 +01:00
flake.nix
install.sh
Readme.md

NixOs

This is a repo with a multi host NixOS configuration.

Layout

The following is how this config is layouted

├── Readme.md
├── install.sh
├── flake.nix
├── flake.lock
├── configuration.nix
├── environment
│   ├── hyprland
│   │   └── flake.nix
│   └── plasma
│       └── flake.nix
├── host
│   ├── nixbookpro
│   │   ├── default.nix
│   │   ├── boot.nix
│   │   ├── keyboard.nix
│   │   └── audio.nix
│   └── nixbox
│       ├── default.nix
│       └── boot.nix
└── users
    ├── root
    │   └── flake.nix
    └── snoweuph
        └── flake.nix

Installation

f=$(mktemp);curl -fsSL https://git.euph.dev/snoweuph/nix/raw/branch/main/install.sh -o $f;chmod +x $f;sudo $f;rm $f