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, ...}: {
|
||||
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
|
|
@ -3,4 +3,4 @@ _: {
|
|||
enable = true;
|
||||
acceleration = "cuda";
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -1,9 +1,5 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = [
|
||||
pkgs.nodejs_22
|
||||
];
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue