add ncspot
parent
056e512d6d
commit
7b39f58cb1
|
@ -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"
|
12
readme.md
12
readme.md
|
@ -4,17 +4,21 @@ You can use it for inspiration though.
|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
1. Clone the repository into your /etc/nixos directory (delete/rename the existing configuration.nix).
|
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
|
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
|
mkdir -p ~/.config/chezmoi
|
||||||
ln -s /etc/nixos/chezmoi.json /home/schrofi/.config/chezmoi/chezmoi.json
|
ln -s /etc/nixos/chezmoi.json /home/schrofi/.config/chezmoi/chezmoi.json
|
||||||
```
|
```
|
||||||
4. Apply the configuration
|
5. Apply the configuration
|
||||||
```
|
```
|
||||||
chezmoi apply
|
chezmoi apply
|
||||||
```
|
```
|
||||||
5. Done
|
6. Done
|
||||||
|
|
Loading…
Reference in New Issue