mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-04-07 04:28:10 +02:00
feat: disabled hidpi
This commit is contained in:
parent
052a8c608e
commit
91acaff63e
2 changed files with 8 additions and 6 deletions
|
@ -27,7 +27,8 @@
|
|||
hardware.asahi.useExperimentalGPUDriver = true;
|
||||
hardware.asahi.pkgs = lib.mkDefault pkgs;
|
||||
|
||||
hardware.video.hidpi.enable = true;
|
||||
|
||||
|
||||
|
||||
programs.fish.shellInit = ''
|
||||
if test -z (pgrep ssh-agent)
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
|
||||
{
|
||||
imports =
|
||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
[
|
||||
(modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "usb_storage" "sdhci_pci" ];
|
||||
|
@ -14,12 +15,14 @@
|
|||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/d01369d1-b6ad-4fef-b73e-d1d56ec249ca";
|
||||
{
|
||||
device = "/dev/disk/by-uuid/d01369d1-b6ad-4fef-b73e-d1d56ec249ca";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-uuid/1070-1613";
|
||||
{
|
||||
device = "/dev/disk/by-uuid/1070-1613";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
|
@ -34,6 +37,4 @@
|
|||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
|
||||
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
|
||||
# high-resolution display
|
||||
hardware.video.hidpi.enable = lib.mkDefault true;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue