From 7b39f58cb1eb04b20c6bb6743e6de0095081fbf8 Mon Sep 17 00:00:00 2001 From: Florian Schrofner Date: Sat, 14 Nov 2020 14:32:54 +0100 Subject: [PATCH] add ncspot --- chezmoi/dot_config/ncspot/.keep | 0 chezmoi/dot_config/ncspot/config.toml | 18 ++++++++++++++++++ readme.md | 12 ++++++++---- 3 files changed, 26 insertions(+), 4 deletions(-) create mode 100644 chezmoi/dot_config/ncspot/.keep create mode 100644 chezmoi/dot_config/ncspot/config.toml diff --git a/chezmoi/dot_config/ncspot/.keep b/chezmoi/dot_config/ncspot/.keep new file mode 100644 index 0000000..e69de29 diff --git a/chezmoi/dot_config/ncspot/config.toml b/chezmoi/dot_config/ncspot/config.toml new file mode 100644 index 0000000..71bd381 --- /dev/null +++ b/chezmoi/dot_config/ncspot/config.toml @@ -0,0 +1,18 @@ +[theme] +background = "black" +primary = "light white" +secondary = "light black" +title = "green" +playing = "green" +playing_selected = "light green" +playing_bg = "black" +highlight = "light white" +highlight_bg = "#484848" +error = "light white" +error_bg = "red" +statusbar = "black" +statusbar_progress = "green" +statusbar_bg = "green" +cmdline = "light white" +cmdline_bg = "black" +search_match = "light red" diff --git a/readme.md b/readme.md index 66a1f44..8340f31 100644 --- a/readme.md +++ b/readme.md @@ -4,17 +4,21 @@ You can use it for inspiration though. ## Getting Started 1. Clone the repository into your /etc/nixos directory (delete/rename the existing configuration.nix). -2. Build the system with the cloned configuration, this will also create the "schrofi" user. +2. Add the unstable NixOS channel +``` +nix-channel --add https://nixos.org/channels/nixos-unstable nixos-unstable +``` +3. Build the system with the cloned configuration, this will also create the "schrofi" user. ``` nixos-rebuild switch ``` -3. Symlink the chezmoi config to the new users home dir. +4. Switch to the user and symlink the chezmoi config to the new users home dir. ``` mkdir -p ~/.config/chezmoi ln -s /etc/nixos/chezmoi.json /home/schrofi/.config/chezmoi/chezmoi.json ``` -4. Apply the configuration +5. Apply the configuration ``` chezmoi apply ``` -5. Done +6. Done