diff --git a/config/README.md b/config/README.md index 66fe4ea..0d1e13c 100644 --- a/config/README.md +++ b/config/README.md @@ -1,7 +1,3 @@ # config This directory contains application configuration files. - -## Glow - -The Glow theme provided in this repository is from [catppuccin/glamour](https://github.com/catppuccin/glamour/blob/f410083af1e9b2418bcd73dbbbc987461d4aa292/themes/catppuccin-mocha.json). diff --git a/config/glow.config.yml b/config/glow.yml similarity index 100% rename from config/glow.config.yml rename to config/glow.yml diff --git a/config/themes/README.md b/config/themes/README.md new file mode 100644 index 0000000..be61716 --- /dev/null +++ b/config/themes/README.md @@ -0,0 +1,7 @@ +# Themes + +This directory contains themes for applications. + +## Glow + +The Glow theme provided in this repository is the Catppuccin Mocha theme from [catppuccin/glamour](https://github.com/catppuccin/glamour/blob/f410083af1e9b2418bcd73dbbbc987461d4aa292/themes/catppuccin-mocha.json). diff --git a/config/glow.theme.json b/config/themes/glow.json similarity index 100% rename from config/glow.theme.json rename to config/themes/glow.json diff --git a/home-manager/cswimr.nix b/home-manager/cswimr.nix index 18868b6..60a7950 100755 --- a/home-manager/cswimr.nix +++ b/home-manager/cswimr.nix @@ -10,9 +10,9 @@ ".psqlrc".source = config.lib.file.mkOutOfStoreSymlink "/etc/nixos/config/.psqlrc"; ".config/glow/glow.yml".source = - config.lib.file.mkOutOfStoreSymlink "/etc/nixos/config/glow.config.yml"; + config.lib.file.mkOutOfStoreSymlink "/etc/nixos/config/glow.yml"; ".config/glow/theme.json".source = - config.lib.file.mkOutOfStoreSymlink "/etc/nixos/config/glow.theme.json"; + config.lib.file.mkOutOfStoreSymlink "/etc/nixos/config/themes/glow.json"; }; home.sessionPath = [ "/etc/nixos/scripts" ];