mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 20:33:55 -05:00
move hyprland overlays to nixosModules/desktop/hyprland
This commit is contained in:
parent
dbb3ec3895
commit
5902de4177
|
@ -20,7 +20,6 @@
|
|||
alyraffauf-wallpapers = inputs.wallpapers.packages.${pkgs.system}.default;
|
||||
brave = prev.brave.override {commandLineArgs = "--gtk-version=4 --enable-wayland-ime";};
|
||||
google-chrome = prev.google-chrome.override {commandLineArgs = "--gtk-version=4 --enable-wayland-ime";};
|
||||
hyprland = inputs.hyprland.packages.${pkgs.system}.hyprland;
|
||||
nerdfonts = prev.nerdfonts.override {fonts = ["Noto"];};
|
||||
|
||||
obsidian = prev.obsidian.overrideAttrs (old: {
|
||||
|
@ -38,8 +37,6 @@
|
|||
["--ozone-platform-hint=auto --enable-wayland-ime"]
|
||||
old.installPhase;
|
||||
});
|
||||
|
||||
xdg-desktop-portal-hyprland = inputs.hyprland.packages.${pkgs.system}.xdg-desktop-portal-hyprland;
|
||||
})
|
||||
];
|
||||
};
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
config,
|
||||
inputs,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
|
@ -18,6 +19,13 @@
|
|||
];
|
||||
};
|
||||
|
||||
nixpkgs.overlays = [
|
||||
(final: prev: {
|
||||
hyprland = inputs.hyprland.packages.${pkgs.system}.hyprland;
|
||||
xdg-desktop-portal-hyprland = inputs.hyprland.packages.${pkgs.system}.xdg-desktop-portal-hyprland;
|
||||
})
|
||||
];
|
||||
|
||||
programs = {
|
||||
hyprland = {
|
||||
enable = true;
|
||||
|
|
Loading…
Reference in a new issue