mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
wayfire: allow path in settings (#7427)
This commit is contained in:
parent
ce15001862
commit
e90b28967c
3 changed files with 6 additions and 1 deletions
|
|
@ -14,7 +14,7 @@
|
||||||
configIniType =
|
configIniType =
|
||||||
with types;
|
with types;
|
||||||
let
|
let
|
||||||
primitiveType = either str (either bool number);
|
primitiveType = either (either str path) (either bool number);
|
||||||
sectionType = attrsOf primitiveType;
|
sectionType = attrsOf primitiveType;
|
||||||
in
|
in
|
||||||
attrsOf sectionType;
|
attrsOf sectionType;
|
||||||
|
|
|
||||||
|
|
@ -8,3 +8,6 @@ command_terminal=alacritty
|
||||||
[core]
|
[core]
|
||||||
plugins=command expo cube autostart
|
plugins=command expo cube autostart
|
||||||
xwayland=true
|
xwayland=true
|
||||||
|
|
||||||
|
[cube]
|
||||||
|
skydome_texture=/nix/store/yk5hl40w5254k2xkicn32l8ky8sfm9va-dummy
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
wayland.windowManager.wayfire = {
|
wayland.windowManager.wayfire = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
@ -8,6 +9,7 @@
|
||||||
binding_terminal = "alacritty";
|
binding_terminal = "alacritty";
|
||||||
command_terminal = "alacritty";
|
command_terminal = "alacritty";
|
||||||
};
|
};
|
||||||
|
cube.skydome_texture = config.lib.test.mkStubPackage { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue