.dotfiles/templates/other_flake.nix
2024-07-20 00:21:55 +02:00

19 lines
374 B
Nix

{
description = "General Flake";
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 = with pkgs; [
# fill here
];
};
};
}