non important commit
This commit is contained in:
parent
994c8c3b14
commit
e571e03cf4
3 changed files with 23 additions and 0 deletions
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
description = "My cpp development shell";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||||
};
|
||||
|
||||
outputs = {nixpkgs, ...}: let
|
||||
system = "x86_64-linux";
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
};
|
||||
in {
|
||||
devShells."${system}" = {
|
||||
default = pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
typst
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -67,6 +67,7 @@
|
|||
|
||||
nu.enable = true;
|
||||
bash.enable = true;
|
||||
typst.enable = true;
|
||||
|
||||
css.enable = true;
|
||||
html = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue