added an overlay, the foot terminal and hypr stuff
This commit is contained in:
parent
40070d865b
commit
509b1f4aa9
15 changed files with 744 additions and 4 deletions
16
overlay.nix
Normal file
16
overlay.nix
Normal 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
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue