@@ 0,0 1,61 @@
+{
+ "nodes": {
+ "flake-utils": {
+ "inputs": {
+ "systems": "systems"
+ },
+ "locked": {
+ "lastModified": 1694529238,
+ "narHash": "sha256-zsNZZGTGnMOf9YpHKJqMSsa0dXbfmxeoJ7xHlrt+xmY=",
+ "owner": "numtide",
+ "repo": "flake-utils",
+ "rev": "ff7b65b44d01cf9ba6a71320833626af21126384",
+ "type": "github"
+ },
+ "original": {
+ "owner": "numtide",
+ "repo": "flake-utils",
+ "type": "github"
+ }
+ },
+ "nixpkgs": {
+ "locked": {
+ "lastModified": 1696262784,
+ "narHash": "sha256-3SlC8YAzqxaJbKWF2QXZPeJh7hdb/D04rFchtES9Kn0=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "9ea7fec070b3ab13613b144f4d70d8b1140dd43d",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NixOS",
+ "ref": "release-23.05",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "root": {
+ "inputs": {
+ "flake-utils": "flake-utils",
+ "nixpkgs": "nixpkgs"
+ }
+ },
+ "systems": {
+ "locked": {
+ "lastModified": 1681028828,
+ "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
+ "owner": "nix-systems",
+ "repo": "default",
+ "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
+ "type": "github"
+ },
+ "original": {
+ "owner": "nix-systems",
+ "repo": "default",
+ "type": "github"
+ }
+ }
+ },
+ "root": "root",
+ "version": 7
+}
@@ 0,0 1,33 @@
+{
+ description = "A very basic flake";
+
+ inputs = {
+ nixpkgs.url = "github:NixOS/nixpkgs/release-23.05";
+ flake-utils.url = "github:numtide/flake-utils";
+ };
+
+ outputs = { self, flake-utils, nixpkgs }:
+ flake-utils.lib.eachDefaultSystem(system: let
+ pkgs = import nixpkgs {
+ inherit system;
+ };
+ in rec {
+
+ packages.python = pkgs.python310.withPackages (ps: with ps; [
+ dbus-next
+ qtile
+ qtile-extras
+ ]);
+ packages.default = packages.python;
+
+ devShells.default = pkgs.mkShell {
+ nativeBuildInputs = [
+ packages.default
+ ];
+ packages = [
+ pkgs.nodePackages.pyright
+ ];
+ };
+
+ });
+}