Compare commits
4 Commits
70fc8a0c9a
...
25ecab4a70
| Author | SHA1 | Date | |
|---|---|---|---|
| 25ecab4a70 | |||
| 8de85492a6 | |||
| 059b424d87 | |||
| 8dba82f523 |
@ -134,7 +134,7 @@
|
||||
fprintd.enable = true;
|
||||
fprintd.tod.enable = true;
|
||||
fprintd.tod.driver = pkgs.libfprint-2-tod1-goodix;
|
||||
|
||||
|
||||
fwupd.enable = true; #Allows BIOS updates
|
||||
|
||||
locate = {
|
||||
@ -183,6 +183,11 @@
|
||||
openssh.enable = true;
|
||||
};
|
||||
|
||||
systemd.services.fprintd = {
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
serviceConfig.Type = "simple";
|
||||
};
|
||||
|
||||
fonts = {
|
||||
packages = with pkgs; [
|
||||
font-awesome
|
||||
@ -301,8 +306,12 @@
|
||||
sudo.wheelNeedsPassword = false;
|
||||
|
||||
pam.services = {
|
||||
login.fprintAuth = true;
|
||||
sudo.fprintAuth = true;
|
||||
sddm.fprintAuth = false; #Because of the bug with 30 seconds on sddm login
|
||||
sddm-autologin.fprintAuth = false; #Same as above
|
||||
login.fprintAuth = false;
|
||||
sudo.fprintAuth = false; #Disabled because of security risk: https://nvd.nist.gov/vuln/detail/cve-2024-37408
|
||||
kscreenlocker.fprintAuth = true;
|
||||
polkit-1.fprintAuth = false; #Disabled because of security risk: https://nvd.nist.gov/vuln/detail/cve-2024-37408
|
||||
kde.fprintAuth = false;
|
||||
hyprlock = {};
|
||||
};
|
||||
|
||||
@ -19,7 +19,6 @@
|
||||
|
||||
#To reset powerlevel10k, write 'p10k configure' in shell!
|
||||
promptInit = ''
|
||||
source ${pkgs.zsh-autocomplete}/share/zsh-autocomplete/zsh-autocomplete.plugin.zsh
|
||||
source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme
|
||||
|
||||
# Make ← and → move the cursor on the command line, even when in the menu
|
||||
@ -35,7 +34,6 @@
|
||||
pkgs.zsh-completions
|
||||
pkgs.zsh-powerlevel10k
|
||||
pkgs.zsh-syntax-highlighting
|
||||
pkgs.zsh-autocomplete
|
||||
pkgs.zsh-autosuggestions
|
||||
];
|
||||
}
|
||||
|
||||
@ -8,6 +8,7 @@
|
||||
#-----
|
||||
alias py="python3"
|
||||
alias mcrow="echo 'you better try to use nvim you little shit! :3'"
|
||||
alias vi="nvim"
|
||||
alias srcals="source $HOME/NixOS/other/aliases && echo 'Sourced Aliases ... successful!'"
|
||||
alias please="sudo"
|
||||
alias se="sudoedit"
|
||||
|
||||
@ -6,18 +6,36 @@
|
||||
overrideConfig = true;
|
||||
|
||||
input.mice = [
|
||||
{
|
||||
name = "Logitech Wireless Mouse";
|
||||
vendorId = "046d"; # 046D lowercase
|
||||
productId = "4091"; # inner HID device, not the receiver (C534)
|
||||
leftHanded = false;
|
||||
#middleButtonEmulation = false;
|
||||
#naturalScroll = false;
|
||||
{
|
||||
name = "Logitech Wireless Mouse";
|
||||
vendorId = "046d"; # 046D lowercase
|
||||
productId = "4091"; # inner HID device, not the receiver (C534)
|
||||
leftHanded = false;
|
||||
#middleButtonEmulation = false;
|
||||
#naturalScroll = false;
|
||||
#acceleration = -0.25;
|
||||
acceleration = 0;
|
||||
accelerationProfile = "none";
|
||||
scrollSpeed = 1.0;
|
||||
}
|
||||
accelerationProfile = "none";
|
||||
scrollSpeed = 1.0;
|
||||
}
|
||||
{
|
||||
name = "ROCCAT ROCCAT Kone Aimo 16K";
|
||||
vendorId = "1e7d";
|
||||
productId = "2e2c";
|
||||
leftHanded = false;
|
||||
acceleration = -1;
|
||||
accelerationProfile = "none";
|
||||
scrollSpeed = 1.0;
|
||||
}
|
||||
# {
|
||||
# name = "ROCCAT ROCCAT Vulcan AIMO";
|
||||
# vendorId = "1e7d";
|
||||
# productId = "3098";
|
||||
# leftHanded = false;
|
||||
# acceleration = -1;
|
||||
# accelerationProfile = "none";
|
||||
# scrollSpeed = 1.0;
|
||||
# }
|
||||
];
|
||||
|
||||
shortcuts = {
|
||||
|
||||
Reference in New Issue
Block a user