mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
Normalize store paths so it will pass even with flake updates and on different architectures.
20 lines
518 B
Nix
20 lines
518 B
Nix
{ config, ... }:
|
|
{
|
|
wayland.windowManager.wayfire = {
|
|
enable = true;
|
|
package = null;
|
|
settings = {
|
|
core.plugins = "command expo cube";
|
|
command = {
|
|
binding_terminal = "alacritty";
|
|
command_terminal = "alacritty";
|
|
};
|
|
cube.skydome_texture = config.lib.test.mkStubPackage { };
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/wayfire.ini
|
|
assertFileContent "$(normalizeStorePaths home-files/.config/wayfire.ini)" "${./configuration.ini}"
|
|
'';
|
|
}
|