1
0
Fork 0
Nix Configuration Files
  • Nix 94.8%
  • Shell 5.2%
Find a file
2026-08-09 00:16:59 +02:00
environment
host
pkgs
shared setup nix-index-db 2026-08-06 23:10:13 +02:00
users setup nix-index-db 2026-08-06 23:10:13 +02:00
.gitignore
configuration.nix
flake.lock update nvim 2026-08-09 00:16:59 +02:00
flake.nix update nixpkgs 2026-08-06 23:38:01 +02:00
install.sh
Readme.md

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