1
0
Fork 0
Nix Configuration Files
  • Nix 94.8%
  • Shell 5.2%
Find a file
2026-07-26 16:35:19 +02:00
environment
host tweaks 2026-07-20 04:18:43 +02:00
pkgs
shared stuff 2026-07-26 16:35:19 +02:00
users stuff 2026-07-26 16:35:19 +02:00
.gitignore
configuration.nix
flake.lock stuff 2026-07-26 16:35:19 +02:00
flake.nix
install.sh
Readme.md updates 2026-07-10 05:32:20 +02:00

NixOS

This is a repo with a multi host NixOS configuration.

Layout

The following is this configurations is Layout

├── 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