fix: lint

This commit is contained in:
Nickolaj Jepsen 2025-02-21 15:25:56 +01:00
parent 7e6878af94
commit 564ad12def
6 changed files with 167 additions and 519 deletions

View file

@ -1,5 +1,5 @@
{username, ...}: {
networking.wireless.enable = false;
networking.networkmanager.enable = true;
users.users.${username}.extraGroups = [ "networkmanager" ];
users.users.${username}.extraGroups = ["networkmanager"];
}

File diff suppressed because it is too large Load diff

View file

@ -3,4 +3,4 @@ _: {
enable = true;
acceleration = "cuda";
};
}
}

View file

@ -17,7 +17,7 @@ with lib; let
};
mkMouse = name: sensitivity: {
inherit name;
sensitivity = sensitivity;
inherit sensitivity;
};
in {
imports = [
@ -123,15 +123,17 @@ in {
# Names can be found with:
# $ hyprctl devices -j | jq '.["keyboards"].[].name' -r | grep -vE "(system|consumer)-control"
device = [
# $ hyprctl devices -j | jq '.["mice"].[].name' -r
(mkMouse "logitech-usb-ps/2-optical-mouse" 0.2)
] ++ map mkKeyboard [
"splitkb-kyria-rev1"
"zsa-technology-labs-inc-ergodox-ez-shine"
"mattia-dal-ben-redox_wireless"
"zsa-technology-labs-inc-ergodox-ez-shine-keyboard"
];
device =
[
# $ hyprctl devices -j | jq '.["mice"].[].name' -r
(mkMouse "logitech-usb-ps/2-optical-mouse" 0.2)
]
++ map mkKeyboard [
"splitkb-kyria-rev1"
"zsa-technology-labs-inc-ergodox-ez-shine"
"mattia-dal-ben-redox_wireless"
"zsa-technology-labs-inc-ergodox-ez-shine-keyboard"
];
general = {
gaps_in = 5;

View file

@ -1,9 +1,5 @@
{
pkgs,
...
}: {
{pkgs, ...}: {
environment.systemPackages = [
pkgs.nodejs_22
];
}

View file

@ -35,7 +35,7 @@
# https://wiki.hyprland.org/Configuring/Monitors/#rotating
type = lib.types.nullOr lib.types.int;
default = null;
example = 1;
example = 1;
};
enable = lib.mkOption {