-
Notifications
You must be signed in to change notification settings - Fork 1
/
flake.nix
32 lines (30 loc) · 978 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
description = "A simple flake to install Hugo test environment";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
inputs.devshell.url = "github:numtide/devshell";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, devshell, flake-utils, nixpkgs }:
flake-utils.lib.eachDefaultSystem (system: {
devShells.default =
let
pkgs = import nixpkgs {
inherit system;
# bring devshell attribute into the pkgs
overlays = [ devshell.overlays.default ];
};
in
pkgs.devshell.mkShell {
name = "hugo-devshell";
# imports = [];
# a list of packages to add to the shell environment
packages = [
pkgs.hugo
pkgs.dart-sass
# pkgs.podman
pkgs.colima
pkgs.qemu
];
# imports = [ (pkgs.devshell.importTOML ./devshell.toml) ];
};
});
}