remove hyprland from config
This commit is contained in:
parent
c3a4fc2bb2
commit
3c0896e976
24 changed files with 235 additions and 1134 deletions
28
modules/automapaper/config.nix
Normal file
28
modules/automapaper/config.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
writeTextFile,
|
||||
display,
|
||||
init-shader,
|
||||
state-shader,
|
||||
display-shader,
|
||||
horizontal,
|
||||
vertical,
|
||||
tps ? 30,
|
||||
cycles ? horizontal,
|
||||
frames_per_tick ? 1,
|
||||
}:
|
||||
writeTextFile {
|
||||
name = "automapaper-config-${display}";
|
||||
text = ''
|
||||
[display]
|
||||
name="${display}"
|
||||
horizontal=${builtins.toString horizontal}
|
||||
vertical=${builtins.toString vertical}
|
||||
tps=${builtins.toString tps}
|
||||
state_frag="${state-shader}"
|
||||
init_frag="${init-shader}"
|
||||
display_frag="${display-shader}"
|
||||
cycles=${builtins.toString cycles}
|
||||
frames_per_tick=${builtins.toString frames_per_tick}
|
||||
'';
|
||||
destination = "/config.toml";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue