chore: Fix spaceship config

This commit is contained in:
DashieTM 2024-04-17 13:56:19 +02:00
parent 850454a6c6
commit 98da22c22f
4 changed files with 35 additions and 21 deletions

View file

@ -0,0 +1,14 @@
{ lib, ... }: {
options.programs.hyprland = {
hyprpaper = lib.mkOption {
default = '''';
example = ''
hyprpaper stuff
'';
type = lib.types.lines;
description = ''
Extra settings for foo.
'';
};
};
}