mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
fix: lint
This commit is contained in:
parent
7e6878af94
commit
564ad12def
6 changed files with 167 additions and 519 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
{username, ...}: {
|
{username, ...}: {
|
||||||
networking.wireless.enable = false;
|
networking.wireless.enable = false;
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
users.users.${username}.extraGroups = [ "networkmanager" ];
|
users.users.${username}.extraGroups = ["networkmanager"];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -17,7 +17,7 @@ with lib; let
|
||||||
};
|
};
|
||||||
mkMouse = name: sensitivity: {
|
mkMouse = name: sensitivity: {
|
||||||
inherit name;
|
inherit name;
|
||||||
sensitivity = sensitivity;
|
inherit sensitivity;
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
|
|
@ -123,15 +123,17 @@ in {
|
||||||
|
|
||||||
# Names can be found with:
|
# Names can be found with:
|
||||||
# $ hyprctl devices -j | jq '.["keyboards"].[].name' -r | grep -vE "(system|consumer)-control"
|
# $ hyprctl devices -j | jq '.["keyboards"].[].name' -r | grep -vE "(system|consumer)-control"
|
||||||
device = [
|
device =
|
||||||
# $ hyprctl devices -j | jq '.["mice"].[].name' -r
|
[
|
||||||
(mkMouse "logitech-usb-ps/2-optical-mouse" 0.2)
|
# $ hyprctl devices -j | jq '.["mice"].[].name' -r
|
||||||
] ++ map mkKeyboard [
|
(mkMouse "logitech-usb-ps/2-optical-mouse" 0.2)
|
||||||
"splitkb-kyria-rev1"
|
]
|
||||||
"zsa-technology-labs-inc-ergodox-ez-shine"
|
++ map mkKeyboard [
|
||||||
"mattia-dal-ben-redox_wireless"
|
"splitkb-kyria-rev1"
|
||||||
"zsa-technology-labs-inc-ergodox-ez-shine-keyboard"
|
"zsa-technology-labs-inc-ergodox-ez-shine"
|
||||||
];
|
"mattia-dal-ben-redox_wireless"
|
||||||
|
"zsa-technology-labs-inc-ergodox-ez-shine-keyboard"
|
||||||
|
];
|
||||||
|
|
||||||
general = {
|
general = {
|
||||||
gaps_in = 5;
|
gaps_in = 5;
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,5 @@
|
||||||
{
|
{pkgs, ...}: {
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
environment.systemPackages = [
|
environment.systemPackages = [
|
||||||
pkgs.nodejs_22
|
pkgs.nodejs_22
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue