New Aloria

This commit is contained in:
Thomas Avé 2025-04-07 15:45:00 +02:00
parent 670db726e9
commit 02afddb503
4 changed files with 19 additions and 19 deletions

View File

@ -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;
}

View File

@ -202,7 +202,7 @@ in {
device = [
{
name = "tpps/2-ibm-trackpoint";
sensitivity = "+1.0";
sensitivity = "+0.5";
}
{
name = "synaptics-tm3276-022";

View File

@ -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;

View File

@ -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.<interface>.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;