diff options
author | Freya Murphy <freya@freyacat.org> | 2025-06-22 15:35:32 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-06-22 15:35:32 -0400 |
commit | 981445aa983313b4655a950146e889b8523c9aa4 (patch) | |
tree | daa475464de319d452c921f80278aca56352ce4c /config/default.nix | |
parent | change wallpaper (again) (diff) | |
download | dotfiles-nix-981445aa983313b4655a950146e889b8523c9aa4.tar.gz dotfiles-nix-981445aa983313b4655a950146e889b8523c9aa4.tar.bz2 dotfiles-nix-981445aa983313b4655a950146e889b8523c9aa4.zip |
add 10 bit color depth to shinji
Diffstat (limited to 'config/default.nix')
-rw-r--r-- | config/default.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/default.nix b/config/default.nix index ec432f1..53b59cb 100644 --- a/config/default.nix +++ b/config/default.nix @@ -18,6 +18,12 @@ with lib; let description = "Scaling factor of the monitor."; default = 1.0; }; + + bitdepth = mkOption { + type = types.int; + description = "Monitor color bitdepth"; + default = 8; + }; }; }; |