added an overlay, the foot terminal and hypr stuff

This commit is contained in:
Charlie Root 2024-04-12 19:22:28 +02:00
commit 509b1f4aa9
15 changed files with 744 additions and 4 deletions

16
overlay.nix Normal file
View file

@ -0,0 +1,16 @@
{ inputs, outputs, ... }:
let
add_nur = self: super: {
# nur-no-pkgs = import inputs.nur-no-pkgs { pkgs = inputs.nixpkgs.legacyPackages.${profile-config.system}; nurpkgs = inputs.nixpkgs.legacyPackages.${profile-config.system}; };
nur = import inputs.nur {
pkgs = import inputs.nixpkgs { system = "x86_64-linux"; config.allowUnfree = true; }; # .legacyPackages.${profile-config.system};
nurpkgs = import inputs.nixpkgs { system = "x86_64-linux"; config.allowUnfree = true; }; #.legacyPackages.${profile-config.system};
};
};
in
{
nixpkgs.overlays = [
add_nur
];
}