mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 10:47:02 +00:00
24 lines
546 B
Nix
24 lines
546 B
Nix
{ ... }: {
|
|
imports = [ ./wayfire-stubs.nix ];
|
|
|
|
wayland.windowManager.wayfire = {
|
|
enable = true;
|
|
package = null;
|
|
settings = {
|
|
core.plugins = "command expo cube";
|
|
command = {
|
|
binding_terminal = "alacritty";
|
|
command_terminal = "alacritty";
|
|
};
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
wayfireConfig=home-files/.config/wayfire.ini
|
|
|
|
assertFileExists "$wayfireConfig"
|
|
|
|
normalizedConfig=$(normalizeStorePaths "$wayfireConfig")
|
|
assertFileContent "$normalizedConfig" "${./configuration.ini}"
|
|
'';
|
|
}
|