|
|
@ -127,9 +127,8 @@ RUN nix-shell /etc/dotfiles/shell.nix |
|
|
|
nixosConfigurations = { |
|
|
|
<<host-default>> |
|
|
|
}; |
|
|
|
} // inputs.flake-utils.lib.eachDefaultSystem (system: |
|
|
|
} // |
|
|
|
<<development-shells>> |
|
|
|
); |
|
|
|
} |
|
|
|
#+END_SRC |
|
|
|
|
|
|
@ -189,6 +188,7 @@ The command ~nix develop~ will run a bash shell that provides the build environm |
|
|
|
|
|
|
|
#+NAME: development-shells |
|
|
|
#+BEGIN_SRC nix |
|
|
|
inputs.flake-utils.lib.eachDefaultSystem (system: |
|
|
|
let |
|
|
|
pkgs = inputs.nixpkgs.legacyPackages.${system}; |
|
|
|
in |
|
|
@ -206,6 +206,7 @@ in |
|
|
|
rust = import ./shells/rust.nix { inherit pkgs; }; |
|
|
|
}; |
|
|
|
} |
|
|
|
); |
|
|
|
#+END_SRC |
|
|
|
|
|
|
|
** Nix |
|
|
|