New Aloria
This commit is contained in:
parent
670db726e9
commit
02afddb503
|
@ -30,6 +30,7 @@ in
|
||||||
texliveFull
|
texliveFull
|
||||||
gnome-power-manager
|
gnome-power-manager
|
||||||
discord
|
discord
|
||||||
|
smile
|
||||||
];
|
];
|
||||||
|
|
||||||
services.hyprpaper = {
|
services.hyprpaper = {
|
||||||
|
@ -45,7 +46,7 @@ in
|
||||||
|
|
||||||
wayland.windowManager.hyprland.settings = {
|
wayland.windowManager.hyprland.settings = {
|
||||||
monitor = [
|
monitor = [
|
||||||
"eDP-1,1920x1080@60,0x0,1"
|
"eDP-1,2880x1800@120.00Hz,0x0,1.2"
|
||||||
"DP-1,1920x1080@60,0x-1080,1"
|
"DP-1,1920x1080@60,0x-1080,1"
|
||||||
];
|
];
|
||||||
bind = [
|
bind = [
|
||||||
|
@ -56,6 +57,6 @@ in
|
||||||
general.gaps_out = 1;
|
general.gaps_out = 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.alacritty.settings.font.size = 12;
|
programs.alacritty.settings.font.size = 13;
|
||||||
programs.kitty.font.size = 12;
|
programs.kitty.font.size = 15;
|
||||||
}
|
}
|
||||||
|
|
|
@ -202,7 +202,7 @@ in {
|
||||||
device = [
|
device = [
|
||||||
{
|
{
|
||||||
name = "tpps/2-ibm-trackpoint";
|
name = "tpps/2-ibm-trackpoint";
|
||||||
sensitivity = "+1.0";
|
sensitivity = "+0.5";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
name = "synaptics-tm3276-022";
|
name = "synaptics-tm3276-022";
|
||||||
|
|
|
@ -35,18 +35,17 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# systemd.services.fprintd = {
|
systemd.services.fprintd = {
|
||||||
# wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" ];
|
||||||
# serviceConfig.Type = "simple";
|
serviceConfig.Type = "simple";
|
||||||
# };
|
};
|
||||||
# services.fprintd = {
|
services.fprintd = {
|
||||||
# enable = true;
|
enable = true;
|
||||||
# tod = {
|
# tod = {
|
||||||
# enable = true;
|
# enable = true;
|
||||||
# driver = pkgs.libfprint-2-tod1-broadcom;
|
# };
|
||||||
# };
|
};
|
||||||
# };
|
security.pam.services.sudo.fprintAuth = true;
|
||||||
# security.pam.services.sudo.fprintAuth = true;
|
|
||||||
|
|
||||||
# virtualisation
|
# virtualisation
|
||||||
virtualisation.libvirtd.enable = true;
|
virtualisation.libvirtd.enable = true;
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
[ (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.initrd.kernelModules = [ ];
|
||||||
boot.kernelModules = [ "kvm-intel" ];
|
boot.kernelModules = [ "kvm-intel" ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" =
|
||||||
{ device = "/dev/disk/by-uuid/0A4D-063E";
|
{ device = "/dev/disk/by-uuid/5C58-A909";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [ "fmask=0022" "dmask=0022" ];
|
options = [ "fmask=0022" "dmask=0022" ];
|
||||||
};
|
};
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
# still possible to use this option, but it's recommended to use it in conjunction
|
# 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`.
|
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
||||||
networking.useDHCP = lib.mkDefault true;
|
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";
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||||
|
|
Loading…
Reference in New Issue