flake, inputs: remove tokyonight

This commit is contained in:
Guanran Wang 2023-11-21 17:41:26 +08:00
parent 53202ed315
commit 036cd93da3
Signed by: nyancat
SSH key fingerprint: SHA256:8oWGKciPALWut/6WA27oFKofX+6Wtc0gQnsefXLQx/8
5 changed files with 6 additions and 33 deletions

View file

@ -517,7 +517,6 @@
"sops-nix": "sops-nix",
"spicetify-nix": "spicetify-nix",
"systems": "systems",
"tokyonight": "tokyonight",
"wlroots": "wlroots",
"xdph": "xdph"
}
@ -606,22 +605,6 @@
"type": "github"
}
},
"tokyonight": {
"flake": false,
"locked": {
"lastModified": 1698229236,
"narHash": "sha256-axjZVZOI+WIv85FfMG+lxftDKlDIw/HzQKyJVFkL33M=",
"owner": "folke",
"repo": "tokyonight.nvim",
"rev": "f247ee700b569ed43f39320413a13ba9b0aef0db",
"type": "github"
},
"original": {
"owner": "folke",
"repo": "tokyonight.nvim",
"type": "github"
}
},
"wlroots": {
"flake": false,
"locked": {

View file

@ -144,12 +144,6 @@
#};
## Non-Flake
### Color scheme files
tokyonight = {
# TODO: base16.nix/Stylix when?
url = "github:folke/tokyonight.nvim";
flake = false;
};
### Clash WebUI
metacubexd = {
url = "github:MetaCubeX/metacubexd/gh-pages";

View file

@ -1,13 +1,9 @@
{
inputs,
pkgs,
...
}: {
{pkgs, ...}: {
programs.fish = {
enable = true;
interactiveShellInit = ''
set fish_greeting
source ${inputs.tokyonight}/extras/fish/tokyonight_night.fish
source ${pkgs.vimPlugins.tokyonight-nvim}/extras/fish/tokyonight_night.fish
'';
plugins = [
{

View file

@ -1,12 +1,12 @@
{
inputs,
lib,
pkgs,
...
}: {
programs.alacritty = {
enable = true;
settings = {
import = ["${inputs.tokyonight}/extras/alacritty/tokyonight_night.yml"];
import = ["${pkgs.vimPlugins.tokyonight-nvim}/extras/alacritty/tokyonight_night.yml"];
cursor.style = "beam";
env.WINIT_X11_SCALE_FACTOR = "1";
window = {

View file

@ -1,8 +1,8 @@
{inputs, ...}: {
{pkgs, ...}: {
programs.kitty = {
enable = true;
settings = {
include = "${inputs.tokyonight}/extras/kitty/tokyonight_night.conf";
include = "${pkgs.vimPlugins.tokyonight-nvim}/extras/kitty/tokyonight_night.conf";
font_size = 12;
confirm_os_window_close = 0;
window_padding_width = 6;