2024-08-22 20:20:23 +02:00
|
|
|
{
|
|
|
|
description = "NixOS presentation";
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs";
|
|
|
|
quickshell = {
|
|
|
|
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
outputs = {
|
|
|
|
nixpkgs,
|
|
|
|
quickshell,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
systems = ["x86_64-linux" "aarch64-linux"];
|
|
|
|
forEachSystem = nixpkgs.lib.genAttrs systems;
|
|
|
|
|
|
|
|
pkgsForEach = nixpkgs.legacyPackages;
|
|
|
|
in {
|
|
|
|
devShells = forEachSystem (system: {
|
|
|
|
default = pkgsForEach.${system}.mkShellNoCC {
|
|
|
|
packages = [
|
2024-08-30 22:32:25 +02:00
|
|
|
(quickshell.packages.${system}.default.override
|
|
|
|
{
|
|
|
|
withJemalloc = true;
|
|
|
|
withQtSvg = true;
|
|
|
|
withWayland = true;
|
|
|
|
withX11 = false;
|
|
|
|
withPipewire = true;
|
|
|
|
withPam = true;
|
|
|
|
withHyprland = true;
|
|
|
|
})
|
2024-08-22 20:20:23 +02:00
|
|
|
];
|
|
|
|
};
|
|
|
|
});
|
|
|
|
};
|
|
|
|
}
|