flake, inputs: remove tokyonight
This commit is contained in:
parent
53202ed315
commit
036cd93da3
5 changed files with 6 additions and 33 deletions
17
flake.lock
17
flake.lock
|
@ -517,7 +517,6 @@
|
||||||
"sops-nix": "sops-nix",
|
"sops-nix": "sops-nix",
|
||||||
"spicetify-nix": "spicetify-nix",
|
"spicetify-nix": "spicetify-nix",
|
||||||
"systems": "systems",
|
"systems": "systems",
|
||||||
"tokyonight": "tokyonight",
|
|
||||||
"wlroots": "wlroots",
|
"wlroots": "wlroots",
|
||||||
"xdph": "xdph"
|
"xdph": "xdph"
|
||||||
}
|
}
|
||||||
|
@ -606,22 +605,6 @@
|
||||||
"type": "github"
|
"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": {
|
"wlroots": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
|
|
|
@ -144,12 +144,6 @@
|
||||||
#};
|
#};
|
||||||
|
|
||||||
## Non-Flake
|
## Non-Flake
|
||||||
### Color scheme files
|
|
||||||
tokyonight = {
|
|
||||||
# TODO: base16.nix/Stylix when?
|
|
||||||
url = "github:folke/tokyonight.nvim";
|
|
||||||
flake = false;
|
|
||||||
};
|
|
||||||
### Clash WebUI
|
### Clash WebUI
|
||||||
metacubexd = {
|
metacubexd = {
|
||||||
url = "github:MetaCubeX/metacubexd/gh-pages";
|
url = "github:MetaCubeX/metacubexd/gh-pages";
|
||||||
|
|
|
@ -1,13 +1,9 @@
|
||||||
{
|
{pkgs, ...}: {
|
||||||
inputs,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
programs.fish = {
|
programs.fish = {
|
||||||
enable = true;
|
enable = true;
|
||||||
interactiveShellInit = ''
|
interactiveShellInit = ''
|
||||||
set fish_greeting
|
set fish_greeting
|
||||||
source ${inputs.tokyonight}/extras/fish/tokyonight_night.fish
|
source ${pkgs.vimPlugins.tokyonight-nvim}/extras/fish/tokyonight_night.fish
|
||||||
'';
|
'';
|
||||||
plugins = [
|
plugins = [
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
inputs,
|
|
||||||
lib,
|
lib,
|
||||||
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
programs.alacritty = {
|
programs.alacritty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
import = ["${inputs.tokyonight}/extras/alacritty/tokyonight_night.yml"];
|
import = ["${pkgs.vimPlugins.tokyonight-nvim}/extras/alacritty/tokyonight_night.yml"];
|
||||||
cursor.style = "beam";
|
cursor.style = "beam";
|
||||||
env.WINIT_X11_SCALE_FACTOR = "1";
|
env.WINIT_X11_SCALE_FACTOR = "1";
|
||||||
window = {
|
window = {
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{inputs, ...}: {
|
{pkgs, ...}: {
|
||||||
programs.kitty = {
|
programs.kitty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
include = "${inputs.tokyonight}/extras/kitty/tokyonight_night.conf";
|
include = "${pkgs.vimPlugins.tokyonight-nvim}/extras/kitty/tokyonight_night.conf";
|
||||||
font_size = 12;
|
font_size = 12;
|
||||||
confirm_os_window_close = 0;
|
confirm_os_window_close = 0;
|
||||||
window_padding_width = 6;
|
window_padding_width = 6;
|
||||||
|
|
Loading…
Reference in a new issue