initial commit

This commit is contained in:
2025-09-09 12:03:05 +02:00
commit 2d5299c8fa
15 changed files with 622 additions and 0 deletions

24
flake.nix Normal file
View File

@@ -0,0 +1,24 @@
{
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
'';
};
};
}