test
This commit is contained in:
parent
f6408981f8
commit
8cdffb62e9
2 changed files with 32 additions and 33 deletions
|
@ -7,14 +7,14 @@
|
|||
background-image: none;
|
||||
}
|
||||
window {
|
||||
background-color: #${config.lib.stylix.colors.base05};
|
||||
background-color: #${config.lib.stylix.colors.base00};
|
||||
}
|
||||
button {
|
||||
color: #${config.lib.stylix.colors.base04};
|
||||
font-size: 0px;
|
||||
border-radius: 5000px;
|
||||
margin: 25px;
|
||||
background-color: #${config.lib.stylix.colors.base01};
|
||||
background-color: #${config.lib.stylix.colors.base06};
|
||||
border-style: solid;
|
||||
border-width: 3px;
|
||||
background-repeat: no-repeat;
|
||||
|
@ -23,7 +23,7 @@
|
|||
}
|
||||
|
||||
button:active, button:hover {
|
||||
background-color: #${config.lib.stylix.colors.base00};
|
||||
background-color: #${config.lib.stylix.colors.base05};
|
||||
outline-style: none;
|
||||
}
|
||||
|
||||
|
|
|
@ -9,36 +9,36 @@
|
|||
|
||||
imports = [ inputs.stylix.nixosModules.stylix ];
|
||||
|
||||
stylix = {
|
||||
image = /etc/nixos/git/wallpapers/stylix/wallpaper2.jpg;
|
||||
targets = {
|
||||
plymouth.enable = false;
|
||||
stylix = {
|
||||
image = /etc/nixos/git/wallpapers/stylix/wallpaper2.jpg;
|
||||
targets = {
|
||||
plymouth.enable = false;
|
||||
};
|
||||
autoEnable = true;
|
||||
polarity = "dark";
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/atelier-cave.yaml";
|
||||
fonts = {
|
||||
serif = {
|
||||
package = pkgs.dejavu_fonts;
|
||||
name = "DejaVu Serif";
|
||||
};
|
||||
autoEnable = true;
|
||||
polarity = "dark";
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/atelier-cave.yaml";
|
||||
fonts = {
|
||||
serif = {
|
||||
package = pkgs.dejavu_fonts;
|
||||
name = "DejaVu Serif";
|
||||
};
|
||||
|
||||
sansSerif = {
|
||||
package = pkgs.dejavu_fonts;
|
||||
name = "DejaVu Sans";
|
||||
};
|
||||
sansSerif = {
|
||||
package = pkgs.dejavu_fonts;
|
||||
name = "DejaVu Sans";
|
||||
};
|
||||
|
||||
monospace = {
|
||||
package = pkgs.dejavu_fonts;
|
||||
name = "DejaVu Sans Mono";
|
||||
};
|
||||
monospace = {
|
||||
package = pkgs.dejavu_fonts;
|
||||
name = "DejaVu Sans Mono";
|
||||
};
|
||||
|
||||
emoji = {
|
||||
package = pkgs.noto-fonts-emoji;
|
||||
name = "Noto Color Emoji";
|
||||
};
|
||||
emoji = {
|
||||
package = pkgs.noto-fonts-emoji;
|
||||
name = "Noto Color Emoji";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
services.xserver.videoDrivers = [ ] ++ lib.optional (builtins.isString gpu) gpu;
|
||||
|
||||
|
@ -89,12 +89,11 @@
|
|||
# system sleeps before entering hibernate when
|
||||
# using suspend-then-hibernate
|
||||
systemd.sleep.extraConfig = ''
|
||||
AllowSuspend = yes
|
||||
AllowHibernate = yes
|
||||
AllowSuspendThenhibernate = yes
|
||||
AllowHybridSleep = yes
|
||||
|
||||
HibernateDelaySec = 600
|
||||
AllowSuspend=yes
|
||||
AllowHibernate=yes
|
||||
AllowSuspendThenhibernate=yes
|
||||
AllowHybridSleep=yes
|
||||
HibernateDelaySec=600
|
||||
'';
|
||||
|
||||
# XDG portal
|
||||
|
|
Loading…
Add table
Reference in a new issue