Files
nixos-configs/hosts/pinwheel/modules/skal/flake-template.nix
2023-11-09 22:05:18 +01:00

19 lines
332 B
Nix

{
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 = [];
};
};
}