non important commit
This commit is contained in:
parent
133b01cc11
commit
c0be72a2c2
1 changed files with 15 additions and 0 deletions
|
|
@ -24,6 +24,21 @@
|
||||||
../modules/locale.nix
|
../modules/locale.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
nixpkgs.config.packageOverrides = pkgs: {
|
||||||
|
niri = pkgs.niri.overrideAttrs (old: {
|
||||||
|
postFixup =
|
||||||
|
(old.postFixup or "")
|
||||||
|
+ ''
|
||||||
|
wrapProgram $out/bin/niri \
|
||||||
|
--prefix LD_LIBRARY_PATH : "${pkgs.lib.makeLibraryPath [
|
||||||
|
pkgs.xorg.libXcursor
|
||||||
|
pkgs.xorg.libX11
|
||||||
|
pkgs.xorg.libXi
|
||||||
|
]}"
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
programs.niri.enable = true;
|
programs.niri.enable = true;
|
||||||
|
|
||||||
nix.settings.experimental-features = ["nix-command" "flakes"];
|
nix.settings.experimental-features = ["nix-command" "flakes"];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue