pinwheel: Add skal to handle nix develop shells
This commit is contained in:
18
hosts/pinwheel/modules/skal/flake-template.nix
Normal file
18
hosts/pinwheel/modules/skal/flake-template.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
description = "";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
};
|
||||
|
||||
outputs = { nixpkgs, ... }:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in
|
||||
{
|
||||
devShells."${system}".default = pkgs.mkShell {
|
||||
packages = [];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user