Skip to content

Commit

Permalink
Different picom backend for x1
Browse files Browse the repository at this point in the history
  • Loading branch information
joinemm committed Jan 25, 2024
1 parent 3c0b3df commit 6c4c7e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hosts/x1/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ in {
(with inputs.nixos-hardware.nixosModules; [
lenovo-thinkpad-x1-11th-gen
])
(import ./home.nix {inherit inputs outputs pkgs user;})
(import ./home.nix {inherit inputs outputs pkgs user lib;})
./hardware-configuration.nix
];

Expand Down Expand Up @@ -57,6 +57,7 @@ in {
};

tailscale.enable = true;
fwupd.enable = true;

# fingerprint scanner daemon
# to enroll a finger, use sudo fprintd-enroll $USER
Expand Down
2 changes: 2 additions & 0 deletions hosts/x1/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
outputs,
pkgs,
user,
lib,
...
}: {
imports = [
Expand Down Expand Up @@ -40,6 +41,7 @@
easyeffects.enable = true;
batsignal.enable = true;
udiskie.enable = true;
picom.backend = lib.mkForce "xrender";
};
};
}

0 comments on commit 6c4c7e6

Please sign in to comment.