mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
fix: missing settings from nixpkgs update
This commit is contained in:
parent
4cef1b2727
commit
8006a0abf2
6 changed files with 17 additions and 4 deletions
|
|
@ -1032,6 +1032,7 @@ My work machine. Built for more security, this is the gold standard of my config
|
|||
tap = "enabled";
|
||||
natural_scroll = "enabled";
|
||||
middle_emulation = "enabled";
|
||||
drag_lock = "disabled";
|
||||
};
|
||||
"1133:50504:Logitech_USB_Receiver" = {
|
||||
xkb_layout = "us";
|
||||
|
|
@ -1238,7 +1239,6 @@ This is my main server that I run at home. It handles most tasks that require bi
|
|||
firewall.allowedTCPPorts = [ 80 443 ];
|
||||
};
|
||||
|
||||
|
||||
swarselsystems = {
|
||||
hasBluetooth = false;
|
||||
hasFingerprint = false;
|
||||
|
|
@ -3949,7 +3949,11 @@ This holds modules that are to be used on most hosts. These are also the most im
|
|||
:CUSTOM_ID: h:ec08cd7e-4a9a-419f-a0a7-6cc4576302a1
|
||||
:END:
|
||||
|
||||
Laptops are not always plugged in, so they should show a battery icon in Waybar. Also, most laptops have a touchpad which usually needs to be configured.
|
||||
Laptops are not always plugged in, so they should show a battery icon in Waybar. Also, most laptops have a touchpad which usually needs to be configured:
|
||||
- Tapping should be enabled.
|
||||
- The touchpad should be disabled while typing (=dwt= option).
|
||||
- Natural scrolling should be enabled.
|
||||
- Tag-and-drag lock should be disbled - it gets in my way too much.
|
||||
|
||||
#+begin_src nix :tangle modules/home/laptop.nix
|
||||
{ lib, config, ... }:
|
||||
|
|
@ -3961,6 +3965,7 @@ Laptops are not always plugged in, so they should show a battery icon in Waybar.
|
|||
tap = "enabled";
|
||||
natural_scroll = "enabled";
|
||||
middle_emulation = "enabled";
|
||||
drag_lock = "disabled";
|
||||
};
|
||||
};
|
||||
config.swarselsystems.waybarModules = lib.mkIf config.swarselsystems.isLaptop [
|
||||
|
|
@ -6245,6 +6250,8 @@ Here we just define some aliases for rebuilding the system, and we allow some in
|
|||
"aspnetcore-runtime-6.0.36"
|
||||
"dotnet-sdk-wrapped-6.0.428"
|
||||
"dotnet-sdk-6.0.428"
|
||||
#
|
||||
"SDL_ttf-2.0.11"
|
||||
];
|
||||
|
||||
}
|
||||
|
|
@ -7104,6 +7111,7 @@ Here we just define some aliases for rebuilding the system, and we allow some in
|
|||
config = {
|
||||
adminuser = "admin";
|
||||
adminpassFile = config.sops.secrets.nextcloudadminpass.path;
|
||||
dbtype = "sqlite";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
@ -8478,7 +8486,7 @@ This holds packages that I can use as provided, or with small modifications (as
|
|||
spotify-player
|
||||
element-desktop
|
||||
nicotine-plus
|
||||
stable.transmission
|
||||
stable.transmission_3
|
||||
mktorrent
|
||||
hexchat
|
||||
hugo
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue