You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,21 @@ An unofficial Gentoo package is available, using this repository as upstream. It
41
41
# emerge --ask net-wireless/rtl8821ce-driver
42
42
```
43
43
44
+
### NixOS
45
+
An unofficial nix package is available from [nixpkgs](https://github.com/NixOS/nixpkgs/blob/master/pkgs/os-specific/linux/rtl8821ce/default.nix). It can be installed by adding the following to `/etc/nixos/configuration.nix`:
46
+
```nix
47
+
boot.kernelModules = [ "8821ce" ]
48
+
boot.extraModulePackages = with config.boot.kernelPackages; [
49
+
rtl8821ce
50
+
];
51
+
```
52
+
Then apply the changes:
53
+
```
54
+
sudo nixos-rebuild switch
55
+
```
56
+
And reboot.
57
+
If you are not using the latest linux kernel the package used will be different. Check the [NixOS packages](https://search.nixos.org/packages?type=packages&query=rtl8821ce) to see if your version is supported.
58
+
44
59
### Manual installation of driver
45
60
In order to install the driver open a terminal in the directory with the source code and execute the following command:
0 commit comments