diff options
-rw-r--r-- | flake.nix | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix index 7e892be..96fc132 100644 --- a/flake.nix +++ b/flake.nix @@ -13,7 +13,8 @@ home-manager, ... } @ attrs: let - system = "86_64-linux"; + system = "x86_64-linux"; + pkgs = nixpkgs.legacyPackages."${system}"; in { nixosConfigurations.thinklappi = nixpkgs.lib.nixosSystem { inherit system; @@ -29,5 +30,14 @@ } ]; }; + devShells."${system}" = { + default = pkgs.mkShell { + packages = with pkgs; [ + nil + statix + alejandra + ]; + }; + }; }; } |