Nix Configuration Files
| environment | ||
| host | ||
| shared | ||
| users | ||
| .gitignore | ||
| configuration.nix | ||
| flake.lock | ||
| 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