my files on nixos
| assets/icons | ||
| hellwal | ||
| hosts/hpprobook | ||
| npins | ||
| system | ||
| users/sunny | ||
| .gitignore | ||
| default.nix | ||
| LICENSE | ||
| README.md | ||
| update-hashes.sh | ||
A normal NixOS configuration
.
├── assets
│ └── icons
│ ├── eden.svg
│ ├── haruta.jpg
│ └── NixOS.png
├── etc-inputs.json
├── flake.lock
├── flake.nix
├── hellwal
│ ├── colors.json
│ ├── emacs.el
│ ├── foot-colors.ini
│ ├── fuzzel-colors.ini
│ ├── gtk.css
│ ├── mako-colors
│ ├── niri.kdl
│ ├── post-hook.sh
│ ├── qt-colors.conf
│ ├── system24.css
│ ├── terminal.sh
│ ├── variablesfish.fish
│ └── waybar-colors.css
├── hosts
│ └── hpprobook
│ ├── configuration.nix
│ └── hardware-configuration.nix
├── LICENSE
├── README.md
├── system
│ ├── core
│ │ ├── boot.nix
│ │ ├── compress.nix
│ │ ├── default.nix
│ │ ├── impermanence.nix
│ │ ├── nix-settings.nix
│ │ ├── users.nix
│ │ └── virtualisation.nix
│ └── packages
│ ├── audio.nix
│ ├── bluetooth.nix
│ ├── default.nix
│ ├── desktop.nix
│ ├── fonts.nix
│ ├── portals.nix
│ └── programs.nix
├── update-etc-inputs.sh
└── users
└── sunny
├── browser.nix
├── default.nix
├── desktop
│ ├── default.nix
│ ├── essentials.nix
│ ├── fuzzel-logout-menu
│ └── niri.nix
├── dotfiles
├── emacs.nix
├── packages
│ ├── browser-paths.patch
│ ├── default.nix
│ ├── eden.nix
│ ├── ice-ssb.nix
│ └── pcsx2.nix
├── theming.nix
└── user-shell.nix
14 directories, 53 files