packages: Add polylux and pdfpc

This commit is contained in:
DashieTM 2024-07-01 16:29:51 +02:00
parent b9c687d62e
commit 7e65c8e62a
22 changed files with 506 additions and 164 deletions

View file

@ -0,0 +1,31 @@
{
description = "Dashies neovim config";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
};
outputs =
{ ...
}@inputs:
let
pkgs = import inputs.nixpkgs {
system = "x86_64-linux";
overlays = [
inputs.nur.overlay
];
config = {
allowUnfree = true;
};
};
in
{
imports = [ ./default.nix { inherit pkgs; } ];
};
}