nysh/flake.nix
Nydragon db3042111f
feat: hacky network and notification widget and caffeine widget
Network and notification widgets are just buttons to open nmtui and
swaync respectively... what they are doing in my waybar right now
anyways. Now I *should* not need waybar anymore.

Caffeine widget does what there is to do, set an inhibitor.

Restructured the project so that icons are in src/, screenshots are in
the renamed screenshots folder
2024-09-21 02:05:00 +02:00

44 lines
1.2 KiB
Nix

{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
utils.url = "github:numtide/flake-utils";
quickshell = {
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{ nixpkgs, utils, ... }@inputs:
utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
quickshell = inputs.quickshell.packages.${system}.default.override { withQMLLib = true; };
in
{
devShell = pkgs.mkShell {
buildInputs = [
quickshell
pkgs.kdePackages.qtdeclarative
pkgs.pre-commit
pkgs.typos
];
shellHook = ''
# Required for qmlls to find the correct type declarations
# Sadly Quickshell doesn't export some types declaratively
export QMLLS_BUILD_DIRS=${pkgs.kdePackages.qtdeclarative}/lib/qt-6/qml/:${quickshell}/lib/qt-6/qml/
${pkgs.pre-commit}/bin/pre-commit install -f
'';
};
defaultPackage = import ./nix/package.nix {
inherit (pkgs) stdenv;
inherit quickshell;
};
}
);
}