revert: use old flake

This commit is contained in:
fabricsoul 2025-02-25 17:17:26 -05:00
parent d164e5e53d
commit a2e660782f
20 changed files with 1158 additions and 3 deletions

37
README.md Normal file
View file

@ -0,0 +1,37 @@
# Project Structure
```
nixos-configs/
├── flake.nix
├── .gitignore
├── hosts/
│ ├── common/
│ │ ├── global/
│ │ │ ├── default.nix
│ │ │ ├── fonts.nix
│ │ │ └── locale.nix
│ │ └── optional/
│ │ ├── nvidia.nix
│ │ ├── docker.nix
│ │ └── steam.nix
│ ├── tatara/
│ │ ├── default.nix
│ │ └── hardware-configuration.nix
│ └── nix/
│ ├── default.nix
│ └── hardware-configuration.nix
├── home/
│ ├── fabric/
│ │ ├── default.nix
│ │ ├── programs/
│ │ │ ├── git.nix
│ │ │ ├── kitty.nix
│ │ │ ├── nixvim.nix
│ │ │ ├── tmux.nix
│ │ │ └── zsh.nix
│ │ └── desktop/
│ │ ├── hyprland.nix
│ │ └── hyprpanel.nix
│ └── home.nix
```