shell and clean

This commit is contained in:
2025-10-03 21:24:54 +02:00
parent 355b5ef524
commit a3663f471e
19 changed files with 55 additions and 15 deletions

27
flake.lock generated Normal file
View File

@@ -0,0 +1,27 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1759381078,
"narHash": "sha256-gTrEEp5gEspIcCOx9PD8kMaF1iEmfBcTbO0Jag2QhQs=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "7df7ff7d8e00218376575f0acdcc5d66741351ee",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

19
flake.nix Normal file
View File

@@ -0,0 +1,19 @@
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs }:
let
systems = [
"x86_64-linux"
];
forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system);
in {
devShells = forAllSystems (system: {
default = nixpkgs.legacyPackages.${system}.callPackage ./shell.nix { };
});
};
}

View File

@@ -1 +0,0 @@

View File

@@ -1,3 +0,0 @@
63f7b34db8d8cdea90c76aacccf841ec
::res://::1759516189
icon.svg::CompressedTexture2D::7084668747361954425::1759516186::1759516190::1::::<><><>0<>0<>1fe9fef07f950d3add9f24f9bef7cd69<>res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex::

View File

@@ -1,7 +0,0 @@
[game_view]
select_mode=0
[editor_metadata]
executable_path="/nix/store/yqqvihfy848d915i4smr0car5x0akx3l-godot-4.5-stable/libexec/godot.linuxbsd.editor.x86_64"

View File

@@ -1 +0,0 @@
list=[]

View File

@@ -1,3 +0,0 @@
source_md5="a16f2eed1b4496c4abf03d329708ba09"
dest_md5="b48bef1f2eefdd190e0a3e60a6188d75"

Binary file not shown.

9
shell.nix Normal file
View File

@@ -0,0 +1,9 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
godot_4_5
blender
pixelorama
];
}