nix dev environment

This commit is contained in:
2026-08-06 23:29:07 -05:00
commit 52a010e999
2 changed files with 74 additions and 0 deletions
Generated
+27
View File
@@ -0,0 +1,27 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1785967620,
"narHash": "sha256-IItrdb7Puk05RqOBWZYFC5X6Wl1sJmCfh5MWVHw5iMM=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b7c2ada94fe99c15b0dbcf4d11fd7850b957a436",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}
+47
View File
@@ -0,0 +1,47 @@
{
description = "development shell for nomad game shell";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
};
in
{
devShells.${system}.default = pkgs.mkShell {
packages = with pkgs; [
# build
cmake
ninja
pkg-config
# Qt / QML
qt6.qtbase
qt6.qtdeclarative
qt6.qttools
# nested Wayland environment
sway
wayland
wayland-utils
# rust stuff
rustc
cargo
# etc
jq
socat
];
shellHook = ''
echo "nomad development environment"
'';
};
};
}