Set up the basics of imperanence
This commit is contained in:
parent
7bd9d9aa0b
commit
78f154b38a
20 changed files with 224 additions and 134 deletions
hosts/nixos/common/optional
|
@ -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
|
||||
|
|
10
hosts/nixos/common/optional/xdg-portal.nix
Normal file
10
hosts/nixos/common/optional/xdg-portal.nix
Normal 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" ];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue