feat: Flake | add dev shell

This commit is contained in:
2025-02-02 17:31:34 +05:00
parent d676071797
commit 4289c5ac2b
3 changed files with 10 additions and 0 deletions

1
.envrc Normal file
View File

@@ -0,0 +1 @@
use flake

1
.gitignore vendored
View File

@@ -0,0 +1 @@
.direnv

View File

@@ -75,5 +75,13 @@
modules = [ ./home-manager/home.nix ];
};
};
devShell.x86_64-linux = pkgs.mkShell {
buildInputs = with pkgs; [
# Adding node for copilot
nodejs_20
nil
];
};
};
}