diff --git a/home/Aloria.nix b/home/Aloria.nix index 15ed1a5..229ee5a 100644 --- a/home/Aloria.nix +++ b/home/Aloria.nix @@ -30,6 +30,7 @@ in texliveFull gnome-power-manager discord + smile ]; services.hyprpaper = { @@ -45,7 +46,7 @@ in wayland.windowManager.hyprland.settings = { monitor = [ - "eDP-1,1920x1080@60,0x0,1" + "eDP-1,2880x1800@120.00Hz,0x0,1.2" "DP-1,1920x1080@60,0x-1080,1" ]; bind = [ @@ -56,6 +57,6 @@ in general.gaps_out = 1; }; - programs.alacritty.settings.font.size = 12; - programs.kitty.font.size = 12; + programs.alacritty.settings.font.size = 13; + programs.kitty.font.size = 15; } diff --git a/home/hyprland/default.nix b/home/hyprland/default.nix index 6b55f3e..6674795 100644 --- a/home/hyprland/default.nix +++ b/home/hyprland/default.nix @@ -202,7 +202,7 @@ in { device = [ { name = "tpps/2-ibm-trackpoint"; - sensitivity = "+1.0"; + sensitivity = "+0.5"; } { name = "synaptics-tm3276-022"; diff --git a/hosts/Aloria/default.nix b/hosts/Aloria/default.nix index 57b67f2..635a810 100644 --- a/hosts/Aloria/default.nix +++ b/hosts/Aloria/default.nix @@ -35,18 +35,17 @@ in { }; }; - # systemd.services.fprintd = { - # wantedBy = [ "multi-user.target" ]; - # serviceConfig.Type = "simple"; - # }; - # services.fprintd = { - # enable = true; - # tod = { - # enable = true; - # driver = pkgs.libfprint-2-tod1-broadcom; - # }; - # }; - # security.pam.services.sudo.fprintAuth = true; + systemd.services.fprintd = { + wantedBy = [ "multi-user.target" ]; + serviceConfig.Type = "simple"; + }; + services.fprintd = { + enable = true; + # tod = { + # enable = true; + # }; + }; + security.pam.services.sudo.fprintAuth = true; # virtualisation virtualisation.libvirtd.enable = true; diff --git a/hosts/Aloria/hardware-configuration.nix b/hosts/Aloria/hardware-configuration.nix index 320d89c..8fe8717 100644 --- a/hosts/Aloria/hardware-configuration.nix +++ b/hosts/Aloria/hardware-configuration.nix @@ -8,7 +8,7 @@ [ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ]; + boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; @@ -24,7 +24,7 @@ }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/0A4D-063E"; + { device = "/dev/disk/by-uuid/5C58-A909"; fsType = "vfat"; options = [ "fmask=0022" "dmask=0022" ]; }; @@ -36,7 +36,7 @@ # still possible to use this option, but it's recommended to use it in conjunction # with explicit per-interface declarations with `networking.interfaces..useDHCP`. networking.useDHCP = lib.mkDefault true; - # networking.interfaces.wlo1.useDHCP = lib.mkDefault true; + # networking.interfaces.wlp0s20f3.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;