Theming and docs
This commit is contained in:
parent
cb52188c45
commit
639382393e
3 changed files with 25 additions and 5 deletions
20
README.md
20
README.md
|
@ -1,6 +1,16 @@
|
||||||
# NixOS Configuration Repository
|
# NixOS Configuration Repository
|
||||||
Repo for nix configuration files
|
Repo for nix configuration files
|
||||||
---
|
---
|
||||||
|
# To Do List
|
||||||
|
[ ] tmux config / theming
|
||||||
|
[ ] waybar config / theming
|
||||||
|
[ ] hyprland config / theming
|
||||||
|
[ ] powerline config / theming
|
||||||
|
[ ] nvidia drivers
|
||||||
|
[ ] other things I'm probably forgetting
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
# Information
|
# Information
|
||||||
### Home Manager
|
### Home Manager
|
||||||
* Home Manager Documentation - [Link](https://nix-community.github.io/home-manager/index.html)
|
* Home Manager Documentation - [Link](https://nix-community.github.io/home-manager/index.html)
|
||||||
|
@ -26,11 +36,15 @@ Repo for nix configuration files
|
||||||
* `org/gnome/shell/extensions/nightthemeswitcher/icon-variants`
|
* `org/gnome/shell/extensions/nightthemeswitcher/icon-variants`
|
||||||
* `org/gnome/shell/extensions/nightthemeswitcher/shell-variants`
|
* `org/gnome/shell/extensions/nightthemeswitcher/shell-variants`
|
||||||
### neovim
|
### neovim
|
||||||
1. `common/dotfiles/neovim.nix` - Change the following:
|
1. `home-manager/neovim.nix` - Change the following:
|
||||||
* `plugins = with pkgs.vimPlugins` - Add your theme under "Themes"
|
* `plugins = with pkgs.vimPlugins` - Add your theme under "Themes"
|
||||||
* `extraConfig` - Change the `colorscheme` section
|
* `extraConfig` - Change the `colorscheme` and `AirlineTheme` sections
|
||||||
|
### tmux / powerline
|
||||||
|
1. WIP
|
||||||
### hyprland / waybar
|
### hyprland / waybar
|
||||||
1. Work in progress...
|
1. WIP
|
||||||
|
### Firefox
|
||||||
|
1. `home-manager/firefox.nix` - Change the entry under "# Theming"
|
||||||
|
|
||||||
# GPG Keys
|
# GPG Keys
|
||||||
1. Import your GPG key `albert.key`
|
1. Import your GPG key `albert.key`
|
||||||
|
|
|
@ -15,6 +15,8 @@
|
||||||
privacy-redirect
|
privacy-redirect
|
||||||
link-cleaner
|
link-cleaner
|
||||||
demodal
|
demodal
|
||||||
|
# Theming
|
||||||
|
gruvbox-dark-theme
|
||||||
];
|
];
|
||||||
|
|
||||||
search.default = "DuckDuckGo";
|
search.default = "DuckDuckGo";
|
||||||
|
|
|
@ -76,9 +76,13 @@
|
||||||
set expandtab
|
set expandtab
|
||||||
set softtabstop=2
|
set softtabstop=2
|
||||||
set cursorline
|
set cursorline
|
||||||
set nowrap
|
# set nowrap
|
||||||
|
set wrap
|
||||||
let g:rainbow_active = 1
|
let g:rainbow_active = 1
|
||||||
colorscheme tokyonight-night
|
|
||||||
|
# Theming
|
||||||
|
colorscheme gruvbox
|
||||||
|
AirlineTheme gruvbox
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue