-
1
-
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
-
18
-
19
-
20
-
21
-
22
-
23
-
24
{
config,
lib,
pkgs,
...
}:
{
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
];
# VA-API
hardware.graphics.extraPackages = [ pkgs.intel-vaapi-driver ];
networking.hostName = "ThinkPad-X1-Yoga-Gen-6";
systemd.user.services.switch-virtual-keyboard = {
wantedBy = [ "graphical-session.target" ];
path = [ pkgs.kdePackages.kconfig ];
serviceConfig.ExecStart = pkgs.writers.writeFish "switch-virtual-keyboard" ./switch-virtual-keyboard.fish;
};
}