refactor out open tablet driver module
This commit is contained in:
parent
06221defba
commit
4e1578d88b
2 changed files with 9 additions and 2 deletions
|
@ -14,6 +14,7 @@
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
../../modules/nixos/locale.nix
|
../../modules/nixos/locale.nix
|
||||||
../../modules/package/nautilus.nix
|
../../modules/package/nautilus.nix
|
||||||
|
../../modules/package/otd.nix
|
||||||
inputs.home-manager.nixosModules.default
|
inputs.home-manager.nixosModules.default
|
||||||
];
|
];
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
@ -183,7 +184,6 @@
|
||||||
gparted
|
gparted
|
||||||
gpa
|
gpa
|
||||||
menulibre
|
menulibre
|
||||||
opentabletdriver
|
|
||||||
gsmartcontrol
|
gsmartcontrol
|
||||||
cpu-x
|
cpu-x
|
||||||
|
|
||||||
|
@ -228,7 +228,6 @@
|
||||||
networking.hostName = "nixos";
|
networking.hostName = "nixos";
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
services.printing.enable = false;
|
services.printing.enable = false;
|
||||||
hardware.opentabletdriver.enable = true;
|
|
||||||
hardware.openrazer.enable = true;
|
hardware.openrazer.enable = true;
|
||||||
security.rtkit.enable = true;
|
security.rtkit.enable = true;
|
||||||
environment.sessionVariables = {
|
environment.sessionVariables = {
|
||||||
|
|
8
modules/package/otd.nix
Normal file
8
modules/package/otd.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
hardware.opentabletdriver.enable = true;
|
||||||
|
environment.systemPackages = [
|
||||||
|
pkgs.opentabletdriver
|
||||||
|
];
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue