aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorKumar Damani <me@kumardamani.net>2026-07-24 04:25:00 +0000
committerKumar Damani <me@kumardamani.net>2026-07-24 04:25:40 +0000
commita6a3f943063ce04fd0fd3030c6f67711a7943bd4 (patch)
treef3a6c8b97f61031641c4c0e613c76e9a60a1910b /flake.nix
parent3a2dd35f4b6b6414ec3ba4af4e0984598ff9aa35 (diff)
preparing for switch to typst
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/flake.nix b/flake.nix
deleted file mode 100644
index 0a5a069..0000000
--- a/flake.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- 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.hugo pkgs.awscli ];
- enterShell = ''
- echo this is my hugo website project shell.
- '';
- };
- };
- };
-}