summaryrefslogtreecommitdiff
path: root/hosts/local/master
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/local/master')
-rw-r--r--hosts/local/master/configuration.nix8
-rw-r--r--hosts/local/master/keyboard.nix6
2 files changed, 12 insertions, 2 deletions
diff --git a/hosts/local/master/configuration.nix b/hosts/local/master/configuration.nix
index aa12e1c..e228246 100644
--- a/hosts/local/master/configuration.nix
+++ b/hosts/local/master/configuration.nix
@@ -10,7 +10,7 @@
#../../android.nix
../i3.nix
# ../gnome.nix
- #../wayland.nix
+ # ../wayland.nix
../nvidia.nix
./keyboard.nix
];
@@ -41,6 +41,12 @@
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
+ #
+ #
+ environment.systemPackages = [
+ pkgs.nodejs
+ pkgs.python312
+ ];
system.stateVersion = "23.11"; # Did you read the comment?
diff --git a/hosts/local/master/keyboard.nix b/hosts/local/master/keyboard.nix
index d9f6d84..852f084 100644
--- a/hosts/local/master/keyboard.nix
+++ b/hosts/local/master/keyboard.nix
@@ -29,10 +29,14 @@
services.kmonad = {
enable = true;
keyboards = {
- usbThinkpad = {
+ wirelessThinkpad = {
device = "/dev/input/by-id/usb-Lenovo_TrackPoint_Keyboard_II-event-kbd";
config = builtins.readFile ./thinkpad.kbd;
};
+ wiredThinkpad = {
+ device = "/dev/input/by-id/usb-Lenovo_ThinkPad_Compact_USB_Keyboard_with_TrackPoint-event-kbd";
+ config = builtins.readFile ./thinkpad.kbd;
+ };
};
};
}