fix screen freezes

This commit is contained in:
nixos 2023-09-04 07:28:36 +02:00
parent 37a904421f
commit f54bbc6419
2 changed files with 5 additions and 2 deletions

View file

@ -1,6 +1,5 @@
# TODO
- fix screen freeze
- auto-install firefox extensions
- flakes?
- keepassxc

View file

@ -11,7 +11,11 @@ in
(import "${home-manager}/nixos")
];
boot.loader.systemd-boot.enable = true;
boot = {
loader.systemd-boot.enable = true;
kernelParams = [ "i915.enable_psr=0" ];
};
networking.hostName = "x260";
time.timeZone = "Europe/Amsterdam";
i18n.defaultLocale = "en_US.UTF-8";