feat(programs): remove nordvpn

This commit is contained in:
2026-02-19 08:53:00 +01:00
parent 3b48a2aed2
commit 8d7848c0d3
4 changed files with 0 additions and 19 deletions

View File

@@ -54,7 +54,6 @@
"wheel"
"docker"
"libvirtd"
"nordvpn"
];
shell = pkgs.fish;
};

View File

@@ -2,6 +2,5 @@
{
services = {
pcscd.enable = true;
nordvpn.enable = true;
};
}

View File

@@ -5,10 +5,6 @@
...
}:
{
imports = [
./nordvpn.nix
];
programs = {
gamescope = {
enable = true;

View File

@@ -1,13 +0,0 @@
{ 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;
})
];
}