Public part of my dotfiles.
 
 
 
 
 
 
Go to file
Geoffrey Frogeye 440b1e0563
Fix locale
2024-03-10 19:13:57 +01:00
common Re-add variants and reorganize things 2024-02-17 18:39:09 +01:00
curacao Fix OS scripts for flakes 2024-02-17 23:35:53 +01:00
hm Fix locale 2024-03-10 19:13:57 +01:00
nod nod: Fifth attempt at flakes 2024-01-16 23:48:41 +01:00
os Fix locale 2024-03-10 19:13:57 +01:00
pindakaas pindakaas: Fix video stuttering 2024-02-19 00:55:45 +01:00
unprocessed firefox: Rudimentary config, tridactyl support 2024-01-15 23:12:02 +01:00
.gitignore Fix OS scripts for flakes 2024-02-17 23:35:53 +01:00
README.md nod: Flake test 2024-01-16 22:39:29 +01:00
build_hm.sh Fix Wi-Fi flakes 2024-01-06 19:10:47 +01:00
build_os.sh Fix OS scripts for flakes 2024-02-17 23:35:53 +01:00
ensure_nix.sh usernix: Fixes following testing 2024-01-04 19:45:07 +01:00
flake.lock Upgrade 2024-03-04 16:52:01 +01:00
flake.nix Fix OS scripts for flakes 2024-02-17 23:35:53 +01:00
install_os.sh xlock: Add option 2024-03-09 18:22:51 +01:00
options.nix xlock: Add option 2024-03-09 18:22:51 +01:00

README.md

Geoffrey Frogeye's dotfiles

This repo holds most of my systems configuration. It is built on top of the Nix ecosystem

Directory structure

  • os, hm, nod: Re-usable configuration for NixOS, home-manager, Nix-on-Droid respectively
    • <module-name>: Module. Used to separate configuration in separate logical units.
      • default.nix: Entrypoint for that module. Contains Nix configuration for the module.
      • <other file>: Extra files: scripts to be installed, or ... whatever.
    • default.nix: Entrypoint for that system. Import all the modules.
    • <other file>: Files non-conforming to the structure above because I'm hurrying to have everything working before cleaning.
  • dk: Re-usable configuration for disko
    • <name>.nix: Partitionning scheme configuration. Don't assume a specific context, it will be imported as Disko and NixOS config.
  • options.nix: Definition of options exposed to all systems (even though if not relevant for all, it's for simplicity sake).
  • <profile-name> (e.g. curacao): Configurations for my different devices
    • options.nix: Common options configuration. Don't assume a specific context (for reasons unclear, I'm sure I can do something with that).
    • hardware.nix: NixOS configuration for that specific device.
    • dk.nix: Partitionning configuration. Import a top-level dk scheme, adding disks ids and other configuration required.
    • os.nix, hm.nix, nod.nix: Entrypoint for the device/system configuration. Imports the above files (last two only for NixOS) and contains configuration specific to this combination.
  • <profile-name>_<media> (e.g. pindakaas_sd): Alternate configuration for a device. Used to test a configuration without altering the "main" one.
    • options.nix: Same as above. Can be a symlink.
    • hardware.nix: Same as above. Should be a symlink.
    • dk.nix: Same as above. Should not be a symlink.
    • os.nix, hm.nix, nod.nix: Same as above. Should not be a symlink.

Scripts

They all have a -h flag.

Extensions

There's some things I'm not putting in this public repo: work-related things, and other sensitive things that probably shouldn't be public. Those are stored in extensions, i.e. repos with a similar structure to this one, and ultimately importing things from it. This is why you might see options not being seemingly used.