vicinae: init (#1994)
Link: https://github.com/nix-community/stylix/pull/1994 Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
This commit is contained in:
parent
2424a3923d
commit
89f99bfeb8
6 changed files with 132 additions and 0 deletions
61
modules/vicinae/hm.nix
Normal file
61
modules/vicinae/hm.nix
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
{
|
||||
mkTarget,
|
||||
lib,
|
||||
options,
|
||||
...
|
||||
}:
|
||||
mkTarget {
|
||||
name = "vicinae";
|
||||
humanName = "Vicinae";
|
||||
|
||||
configElements = lib.optionals (options.programs ? vicinae) [
|
||||
(
|
||||
{ colors, polarity }:
|
||||
{
|
||||
services.vicinae = {
|
||||
settings.theme.name = "stylix";
|
||||
themes.stylix = {
|
||||
meta = {
|
||||
name = "stylix";
|
||||
description = "theme generated by stylix";
|
||||
variant = if polarity == "either" then "light" else polarity;
|
||||
};
|
||||
colors = with colors.withHashtag; {
|
||||
core = {
|
||||
background = base00;
|
||||
foreground = base05;
|
||||
secondary_background = base01;
|
||||
border = base02;
|
||||
accent = base0D;
|
||||
};
|
||||
accents = {
|
||||
# TODO: magenta and purple shouldn't be the same color
|
||||
blue = base0D;
|
||||
green = base0B;
|
||||
magenta = base0E;
|
||||
orange = base09;
|
||||
purple = base0E;
|
||||
red = base08;
|
||||
yellow = base0A;
|
||||
cyan = base0C;
|
||||
};
|
||||
list.item = {
|
||||
selection = {
|
||||
background.name = base02;
|
||||
secondary_background = base03;
|
||||
};
|
||||
hover.background = base01;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
)
|
||||
(
|
||||
{ opacity }:
|
||||
{
|
||||
services.vicinae.settings.window.opacity = opacity.popups;
|
||||
}
|
||||
)
|
||||
];
|
||||
}
|
||||
6
modules/vicinae/meta.nix
Normal file
6
modules/vicinae/meta.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{ lib, ... }:
|
||||
{
|
||||
name = "Vicinae";
|
||||
homepage = "https://docs.vicinae.com";
|
||||
maintainers = [ lib.maintainers.da157 ];
|
||||
}
|
||||
11
modules/vicinae/testbeds/vicinae.nix
Normal file
11
modules/vicinae/testbeds/vicinae.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{ lib, ... }:
|
||||
{
|
||||
stylix.testbed.ui = {
|
||||
graphicalEnvironment = "hyprland";
|
||||
command.text = "sleep 5 && vicinae open";
|
||||
};
|
||||
|
||||
home-manager.sharedModules = lib.singleton {
|
||||
services.vicinae.enable = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue