mirror of
https://github.com/librephoenix/nixos-config
synced 2025-07-06 06:52:13 +05:30
Added myTheme variable to try system-level stylix
This commit is contained in:
parent
227070ac48
commit
f0bb682e73
4 changed files with 13 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
|||
{ config, lib, pkgs, myName, myEmail, myHomeDir, myDotfilesDir, ... }:
|
||||
{ config, lib, pkgs, myName, myEmail, myHomeDir, myDotfilesDir, myTheme, ... }:
|
||||
|
||||
let
|
||||
# This sets up my "phoenix" script with my configuration paths
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, pkgs, ... }:
|
||||
{ config, pkgs, myTheme, ... }:
|
||||
|
||||
let
|
||||
myFont = "Inconsolata";
|
||||
|
@ -7,11 +7,12 @@ let
|
|||
in
|
||||
{
|
||||
stylix.autoEnable = false;
|
||||
stylix.polarity = "dark";
|
||||
stylix.image = pkgs.fetchurl {
|
||||
url = "https://w.wallhaven.cc/full/6d/wallhaven-6d5k6x.jpg";
|
||||
sha256 = "+xl4H3UiVmMRNvMhIlaLdVTYYqnSyCTSX2UOTGsDQ8c=";
|
||||
};
|
||||
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/tokyo-night-dark.yaml";
|
||||
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/"+myTheme+".yaml";
|
||||
|
||||
stylix.fonts = {
|
||||
monospace = {
|
||||
|
@ -47,5 +48,4 @@ in
|
|||
programs.rofi.enable = true;
|
||||
stylix.targets.feh.enable = true;
|
||||
programs.feh.enable = true;
|
||||
# stylix.targets.lightdm.enable = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue