This commit is contained in:
Ivan Dimitrov 2023-11-07 16:21:50 +02:00
parent e0509aa8ed
commit cdffdf4382
3 changed files with 9 additions and 7 deletions

View File

@ -2,16 +2,17 @@
"nodes": { "nodes": {
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1698266953, "lastModified": 1699366528,
"narHash": "sha256-jf72t7pC8+8h8fUslUYbWTX5rKsRwOzRMX8jJsGqDXA=", "narHash": "sha256-PFAQ4N5f15cg94+EBvOMaOlxD/0HlnZpJ+Avv1u9MgY=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "75a52265bda7fd25e06e3a67dee3f0354e73243c", "rev": "d33ddd39d1381cc20884ba7e78acbdae86469157",
"type": "github" "type": "github"
}, },
"original": { "original": {
"id": "nixpkgs", "owner": "NixOS",
"type": "indirect" "repo": "nixpkgs",
"type": "github"
} }
}, },
"root": { "root": {

View File

@ -3,7 +3,7 @@
''; '';
inputs = { inputs = {
nixpkgs.url = "nixpkgs"; nixpkgs.url = "github:NixOS/nixpkgs";
}; };
outputs = { self, nixpkgs }: outputs = { self, nixpkgs }:
@ -13,6 +13,7 @@
buildInputs = with pkgs; [ buildInputs = with pkgs; [
coreutils-full coreutils-full
nodejs_20 nodejs_20
nodePackages_latest.npm-check-updates
bun bun
]; ];
tmuxConfig = '' tmuxConfig = ''

View File

@ -2,7 +2,7 @@ export default function Home() {
return ( return (
<main className="place-content-center"> <main className="place-content-center">
<div> <div>
whaaaa whaaa
</div> </div>
</main> </main>
) )