move to snowfall
This commit is contained in:
parent
9d7ad7c973
commit
769d4b0df5
188 changed files with 2203 additions and 3041 deletions
17
lib/module/default.nix
Normal file
17
lib/module/default.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{lib, ...}:
|
||||
with lib; rec {
|
||||
mkOpt = type: default: description:
|
||||
mkOption {inherit type default description;};
|
||||
|
||||
mkOpt' = type: default: mkOpt type default null;
|
||||
|
||||
mkBoolOpt = mkOpt types.bool;
|
||||
|
||||
mkStringOpt = mkOpt types.string;
|
||||
|
||||
mkBoolOpt' = mkOpt' types.bool;
|
||||
|
||||
enabled = {enable = true;};
|
||||
|
||||
disabled = {enable = false;};
|
||||
}
|
||||
23
lib/theme/default.nix
Normal file
23
lib/theme/default.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
x = c: "#${c}";
|
||||
|
||||
colors = {
|
||||
"base" = "191724";
|
||||
"surface" = "1f1d2e";
|
||||
"overlay" = "26233a";
|
||||
"muted" = "6e6a86";
|
||||
"subtle" = "6e6a86";
|
||||
"text" = "e0def4";
|
||||
"love" = "eb6f92";
|
||||
"gold" = "f6c177";
|
||||
"rose" = "ebbcba";
|
||||
"pine" = "31748f";
|
||||
"foam" = "9ccfd8";
|
||||
"iris" = "c4a7e7";
|
||||
"highlightlow" = "21202e";
|
||||
"highlightmed" = "403d52";
|
||||
"highlighthigh" = "524f67";
|
||||
};
|
||||
|
||||
wallpaper = ./wallpaper.png;
|
||||
}
|
||||
BIN
lib/theme/wall.png
Normal file
BIN
lib/theme/wall.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.1 MiB |
BIN
lib/theme/wallpaper.png
Normal file
BIN
lib/theme/wallpaper.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.2 MiB |
Loading…
Add table
Add a link
Reference in a new issue