packages: Add polylux and pdfpc
This commit is contained in:
parent
b9c687d62e
commit
7e65c8e62a
22 changed files with 506 additions and 164 deletions
31
nix/programs/nvim/flake.nix
Normal file
31
nix/programs/nvim/flake.nix
Normal 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; } ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue