mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
14 lines
261 B
Nix
14 lines
261 B
Nix
{ pkgs, ... }@inputs:
|
|
{
|
|
imports = [
|
|
inputs.nur.modules.nixos.default
|
|
inputs.nur.legacyPackages.x86_64-linux.repos.wingej0.modules.nordvpn
|
|
];
|
|
|
|
nixpkgs.overlays = [
|
|
(_final: _prev: {
|
|
nordvpn = pkgs.nur.repos.wingej0.nordvpn;
|
|
})
|
|
];
|
|
}
|