Skip to content

Commit 9a79140

Browse files
committed
amd 306 current 2024-12-20 00:38:21 nvidia-egpu-25.05.20241218.85aeae2 6.6.66 *
1 parent 18f07ba commit 9a79140

4 files changed

Lines changed: 5 additions & 6 deletions

File tree

home/backup/default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
wayland.windowManager.hyprland = {
1212
enable = true;
1313
plugins = [ inputs.hypr-dynamic-cursors.packages.${pkgs.system}.hypr-dynamic-cursors ];
14+
extraConfig = builtins.readFile (lib.from-root "config/hypr/hyprland.conf");
1415
};
1516
# TODO: ensure home manager standalone can still work
1617
# TODO: factor out modules into shared files

home/root/default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
wayland.windowManager.hyprland = {
1212
enable = true;
1313
plugins = [ inputs.hypr-dynamic-cursors.packages.${pkgs.system}.hypr-dynamic-cursors ];
14+
extraConfig = builtins.readFile (lib.from-root "config/hypr/hyprland.conf");
1415
};
1516
# TODO: ensure home manager standalone can still work
1617
# TODO: factor out modules into shared files

home/user/default.nix

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
wayland.windowManager.hyprland = {
1212
enable = true;
1313
plugins = [ inputs.hypr-dynamic-cursors.packages.${pkgs.system}.hypr-dynamic-cursors ];
14-
# lib.from-root "config/hypr/hyprland.conf"
15-
extraConfig = '''';
14+
extraConfig = builtins.readFile (lib.from-root "config/hypr/hyprland.conf");
1615
};
1716
# TODO: ensure home manager standalone can still work
1817
# TODO: factor out modules into shared files

nixos/hyprland/default.nix

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@ let
33
pkgs-hyprland = inputs.hyprland.inputs.nixpkgs.legacyPackages.${pkgs.stdenv.hostPlatform.system};
44
in
55
{
6-
hardware.opengl = {
7-
package = pkgs-hyprland.mesa.drivers;
8-
package32 = pkgs-hyprland.pkgsi686Linux.mesa.drivers;
9-
};
106
hardware.graphics = {
117
enable = true;
128
enable32Bit = true;
9+
package = pkgs-hyprland.mesa.drivers;
10+
package32 = pkgs-hyprland.pkgsi686Linux.mesa.drivers;
1311
};
1412
programs.hyprland = {
1513
enable = true;

0 commit comments

Comments
 (0)