diff --git a/users/max/home/dconf/default.nix b/users/max/home/dconf/default.nix index 1c27f64..8c64900 100644 --- a/users/max/home/dconf/default.nix +++ b/users/max/home/dconf/default.nix @@ -2,5 +2,6 @@ imports = [ ./app-folders.nix ./gnome.nix + ./misc.nix ]; } diff --git a/users/max/home/dconf/misc.nix b/users/max/home/dconf/misc.nix new file mode 100644 index 0000000..b8dd0eb --- /dev/null +++ b/users/max/home/dconf/misc.nix @@ -0,0 +1,10 @@ +{ + dconf.settings = { + "com/github/liferooter/textpieces" = { + style-scheme = "classic-dark"; + font-name = "Monospace"; + wrap-lines = true; + tabs-to-spaces = false; + }; + }; +}