summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2024-03-03 14:46:45 +0000
committerGitHub <noreply@github.com>2024-03-03 14:46:45 +0000
commit5c9694b0df330ed63cf5fa65393759505da667a4 (patch)
treedb37e7c1e66ccb4d13dfa83f00dfd7aec8f3b16d /flake.nix
parentba07ecfded5c2ab3c7b7acd8cd432ea337d64e6c (diff)
add dev shell
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; });
};
}