quickshell/flake.nix
2025-09-09 12:03:05 +02:00

25 lines
531 B
Nix

{
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
'';
};
};
}