Add flake.nix

This commit is contained in:
2026-07-07 11:15:27 +01:00
parent 49ba7ddb41
commit 2930d71889
3 changed files with 31 additions and 3 deletions
+28
View File
@@ -0,0 +1,28 @@
{
description = "kutu wm environment";
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; [
ruby
gcc
pkg-config
xorg.libxcb
xorg.xcbutilwm
];
shellHook = ''
echo "kutu dev shell"
'';
};
};
}