1
Fork 0

Set up the basics of imperanence

This commit is contained in:
Matei Adriel 2023-04-27 02:08:20 +03:00
parent 7bd9d9aa0b
commit 78f154b38a
No known key found for this signature in database
20 changed files with 224 additions and 134 deletions
hosts/nixos/common/optional

View file

@ -7,7 +7,7 @@
# How fast we should scroll I think
accelSpeed = "3.5";
# #TODO: I forgor what this did
# TODO: I forgor what this did
naturalScrolling = true;
# Dsiable the touchpad while typing

View file

@ -0,0 +1,10 @@
{ pkgs, lib, ... }: {
xdg.portal = {
enable = true;
xdgOpenUsePortal = true;
extraPortals = [ pkgs.xdg-desktop-portal ];
};
# HACK: copied from @lily on discord.
systemd.user.services.xdg-desktop-portal.path = lib.mkAfter [ "/run/current-system/sw" ];
}