summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix15
1 files changed, 7 insertions, 8 deletions
diff --git a/flake.nix b/flake.nix
index cd1d812..4b9885a 100644
--- a/flake.nix
+++ b/flake.nix
@@ -16,14 +16,13 @@
pkgs = nixpkgs.legacyPackages.${system};
in
{
-
nixosConfigurations.ozpv = nixpkgs.lib.nixosSystem {
- specialArgs = {inherit inputs;};
- modules = [
- ./configuration.nix
- inputs.home-manager.nixosModules.default
- ];
- };
-
+ specialArgs = {inherit inputs;};
+ modules = [
+ ./configuration.nix
+ inputs.home-manager.nixosModules.default
+ ];
+ };
+ devShells.x86_64-linux.default = (import ./shells/rust.nix {inherit pkgs; });
};
}