1
0
Fork 0

add ncspot

master
Florian Schrofner 2020-11-14 14:32:54 +01:00
parent 056e512d6d
commit 7b39f58cb1
3 changed files with 26 additions and 4 deletions

View File

View File

@ -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"

View File

@ -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