fix screen freezes
This commit is contained in:
parent
37a904421f
commit
f54bbc6419
2 changed files with 5 additions and 2 deletions
|
@ -1,6 +1,5 @@
|
|||
# TODO
|
||||
|
||||
- fix screen freeze
|
||||
- auto-install firefox extensions
|
||||
- flakes?
|
||||
- keepassxc
|
||||
|
|
|
@ -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";
|
||||
|
|
Reference in a new issue