Compare commits
4 commits
296aa01b46
...
fe06391a1e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fe06391a1e | ||
|
|
413e927522 | ||
|
|
c2c4a3ad52 | ||
|
|
05e53b52b6 |
4 changed files with 26 additions and 3 deletions
|
|
@ -1,5 +1,15 @@
|
|||
# Installation
|
||||
|
||||
> [!IMPORTANT]
|
||||
> The master (unstable) branch of Stylix follows a rolling-release model. To
|
||||
> ensure version compatibility, all inputs must be kept in sync.
|
||||
>
|
||||
> Avoid partial updates and always update inputs together with:
|
||||
>
|
||||
> ```console
|
||||
> nix flake update
|
||||
> ```
|
||||
|
||||
## NixOS
|
||||
|
||||
You can install Stylix into your NixOS configuration using [Flakes][nix-flakes].
|
||||
|
|
|
|||
|
|
@ -79,6 +79,12 @@ mkTarget {
|
|||
.modules-${place} #workspaces button.active {
|
||||
border-bottom: 3px solid @base05;
|
||||
}
|
||||
|
||||
.modules-${place} #workspaces button.urgent {
|
||||
border-bottom: 3px solid @base08;
|
||||
background-color: @base08;
|
||||
color: @base00;
|
||||
}
|
||||
'';
|
||||
in
|
||||
{
|
||||
|
|
|
|||
|
|
@ -125,8 +125,8 @@ with colors;
|
|||
--identity-icon-color: #${base0F-hex} !important;
|
||||
}
|
||||
|
||||
hbox#titlebar {
|
||||
background-color: #${base00-hex} !important;
|
||||
#navigator-toolbox {
|
||||
--zen-main-browser-background-toolbar: #${base00-hex} !important;
|
||||
}
|
||||
|
||||
#zen-appcontent-navbar-container {
|
||||
|
|
|
|||
|
|
@ -29,7 +29,14 @@ in
|
|||
|
||||
image = lib.mkOption {
|
||||
# Ensure the path is copied to the store
|
||||
type = with lib.types; nullOr (coercedTo path (src: "${src}") pathInStore);
|
||||
type =
|
||||
with lib.types;
|
||||
nullOr (
|
||||
coercedTo path (src: "${src}") path
|
||||
// {
|
||||
inherit (path) description descriptionClass;
|
||||
}
|
||||
);
|
||||
description = ''
|
||||
Wallpaper image.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue