Split out laptop and desktop configs

This commit is contained in:
2023-02-10 01:12:38 +00:00
parent c8727a52d4
commit da8fc92ee8
5 changed files with 25 additions and 21 deletions

View File

@@ -2,6 +2,7 @@
config,
lib,
pkgs,
hostname,
...
}: {
wayland.windowManager.hyprland = {
@@ -12,6 +13,6 @@
hidpi = true;
};
nvidiaPatches = true;
extraConfig = builtins.readFile ./hyprland.conf;
extraConfig = (builtins.readFile ./${hostname}.conf) + (builtins.readFile ./hyprland.conf);
};
}