├── .gitignore ├── Haskell └── ss-haskell-dev.md ├── LICENSE ├── README.md ├── field-guide.md ├── flake-recipes.md ├── flakes.md ├── menu-icon.png ├── nixpkgs-repl.md ├── reuse-nixos-derivation.md ├── shell-recipes ├── 0100-shell-with-nixpkgs.nix ├── 0150-shell-with-git-nix-pkg.nix ├── 0200-shell-with-flake.nix ├── 0250-shell-with-flake-rev.nix ├── 0300-shell-haskell-local.nix ├── 0350-shell-haskell-local-deps.nix ├── 0400-shell-with-env-var.nix ├── header.md ├── make-shell-recipes └── shell-recipes.md └── tutorial ├── 00-intro.md ├── 01-hello-flake.md ├── 02-hello-flake-repo.md ├── 03-basic-flake-structure.md ├── 04-generic-flake.md ├── 05-return-to-hello-flake.md ├── 06-modifying-hello-flake.md ├── 07-new-flake-python.md ├── header-extras.tex ├── make-pdf ├── template.png └── tutorial.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/.gitignore -------------------------------------------------------------------------------- /Haskell/ss-haskell-dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/Haskell/ss-haskell-dev.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/README.md -------------------------------------------------------------------------------- /field-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/field-guide.md -------------------------------------------------------------------------------- /flake-recipes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/flake-recipes.md -------------------------------------------------------------------------------- /flakes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/flakes.md -------------------------------------------------------------------------------- /menu-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/menu-icon.png -------------------------------------------------------------------------------- /nixpkgs-repl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/nixpkgs-repl.md -------------------------------------------------------------------------------- /reuse-nixos-derivation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/reuse-nixos-derivation.md -------------------------------------------------------------------------------- /shell-recipes/0100-shell-with-nixpkgs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/shell-recipes/0100-shell-with-nixpkgs.nix -------------------------------------------------------------------------------- /shell-recipes/0150-shell-with-git-nix-pkg.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/shell-recipes/0150-shell-with-git-nix-pkg.nix -------------------------------------------------------------------------------- /shell-recipes/0200-shell-with-flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/shell-recipes/0200-shell-with-flake.nix -------------------------------------------------------------------------------- /shell-recipes/0250-shell-with-flake-rev.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/shell-recipes/0250-shell-with-flake-rev.nix -------------------------------------------------------------------------------- /shell-recipes/0300-shell-haskell-local.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/shell-recipes/0300-shell-haskell-local.nix -------------------------------------------------------------------------------- /shell-recipes/0350-shell-haskell-local-deps.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/shell-recipes/0350-shell-haskell-local-deps.nix -------------------------------------------------------------------------------- /shell-recipes/0400-shell-with-env-var.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/shell-recipes/0400-shell-with-env-var.nix -------------------------------------------------------------------------------- /shell-recipes/header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/shell-recipes/header.md -------------------------------------------------------------------------------- /shell-recipes/make-shell-recipes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/shell-recipes/make-shell-recipes -------------------------------------------------------------------------------- /shell-recipes/shell-recipes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/shell-recipes/shell-recipes.md -------------------------------------------------------------------------------- /tutorial/00-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/tutorial/00-intro.md -------------------------------------------------------------------------------- /tutorial/01-hello-flake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/tutorial/01-hello-flake.md -------------------------------------------------------------------------------- /tutorial/02-hello-flake-repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/tutorial/02-hello-flake-repo.md -------------------------------------------------------------------------------- /tutorial/03-basic-flake-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/tutorial/03-basic-flake-structure.md -------------------------------------------------------------------------------- /tutorial/04-generic-flake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/tutorial/04-generic-flake.md -------------------------------------------------------------------------------- /tutorial/05-return-to-hello-flake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/tutorial/05-return-to-hello-flake.md -------------------------------------------------------------------------------- /tutorial/06-modifying-hello-flake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/tutorial/06-modifying-hello-flake.md -------------------------------------------------------------------------------- /tutorial/07-new-flake-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/tutorial/07-new-flake-python.md -------------------------------------------------------------------------------- /tutorial/header-extras.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/tutorial/header-extras.tex -------------------------------------------------------------------------------- /tutorial/make-pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/tutorial/make-pdf -------------------------------------------------------------------------------- /tutorial/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/tutorial/template.png -------------------------------------------------------------------------------- /tutorial/tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhwombat/nix-for-numbskulls/HEAD/tutorial/tutorial.pdf --------------------------------------------------------------------------------