From bfa51535b9aecf97296d4d9c35e5d0a11050e1b7 Mon Sep 17 00:00:00 2001 From: 514fpv Date: Tue, 14 May 2024 11:26:39 +0800 Subject: [PATCH] home(plasma): persist display output config --- home/plasma/nixos.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home/plasma/nixos.nix b/home/plasma/nixos.nix index 7616fd7c..f3f8a2ba 100644 --- a/home/plasma/nixos.nix +++ b/home/plasma/nixos.nix @@ -21,6 +21,10 @@ in { { passthrough.plasma = cfg; } ]; + users.home.persist.files = mkIf cfg.enable [ + ".config/kwinoutputconfig.json" + ]; + services.desktopManager.plasma6 = mkIf cfg.enable { enable = true; };