aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
blob: 02875d0ea562fe607e97b5a2fbd0f1337a3379f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  description = "My website project";

  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
    devenv.url = "github:cachix/devenv";
  };

  outputs = inputs@{ flake-parts, nixpkgs, ... }:
    flake-parts.lib.mkFlake { inherit inputs; } {
      imports = [
        inputs.devenv.flakeModule
      ];
      systems = nixpkgs.lib.systems.flakeExposed;
      perSystem = { config, self', inputs', pkgs, system, ... }: {
        devenv.shells.website = {
          packages = [ pkgs.awscli ];
          enterShell = ''
            echo this is my static website project shell.
          '';
        };
      };
    };
}