{ description = "Dev shell with quickshell"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05"; quickshell.url = "github:quickshell-mirror/quickshell"; }; outputs = { self, nixpkgs, quickshell, ... }: let system = "x86_64-linux"; pkgs = import nixpkgs { inherit system; }; in { devShells.${system}.default = pkgs.mkShell { packages = [ quickshell.packages.${system}.default ]; shellHook = '' exec zsh ''; }; }; }