mirror of
https://git.sr.ht/~neverness/ultima
synced 2024-11-24 04:21:11 +00:00
update
This commit is contained in:
parent
8e850a8b42
commit
d0bf140f73
16
README.md
16
README.md
|
@ -2,14 +2,13 @@
|
|||
<h1>❄️【 NIXOS DOTFILES 】❄️</h1>
|
||||
</div>
|
||||
|
||||
## [WALLPAPERS](https://git.sr.ht/~azikx/wallpapers) & [USERSTYLES](https://git.sr.ht/~azikx/userstyles)
|
||||
## [WALLPAPERS](https://git.sr.ht/~neverness/wallpapers) & [USERSTYLES](https://git.sr.ht/~neverness/userstyles)
|
||||
|
||||
<details>
|
||||
<summary>Software</summary>
|
||||
|
||||
|
||||
| Name | Desciption |
|
||||
| ------------- | ------------- |
|
||||
| -------------------------------------------------------------------------------------------- | --------------------------------------- |
|
||||
| Desktop utilites |
|
||||
| [hyprland](https://github.com/hyprwm/hyprland) | Best window manager |
|
||||
| [kitty](https://github.com/kovidgoyal/kitty) | Very good terminal with image preview |
|
||||
|
@ -58,18 +57,19 @@
|
|||
| [tenki](https://github.com/ckaznable/tenki) | TUI clock with effects |
|
||||
| [confetty](https://github.com/maaslalani/confetty) | Confetty and fireworks in terminal |
|
||||
| [jetbrains](https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/JetBrainsMono) | Nerded JetBrains |
|
||||
|
||||
- IDK WHAT ALSO DUDES
|
||||
|
||||
</details>
|
||||
|
||||
![aye](https://git.sr.ht/~azikx/wallpapers/blob/main/dotfiles/workst/fetch.png)
|
||||
![aye](https://git.sr.ht/~neverness/wallpapers/blob/main/dotfiles/workst/fetch.png)
|
||||
|
||||
![ауе](https://git.sr.ht/~azikx/wallpapers/blob/main/dotfiles/workst/zen.png)
|
||||
![ауе](https://git.sr.ht/~neverness/wallpapers/blob/main/dotfiles/workst/zen.png)
|
||||
|
||||
![ауе](https://git.sr.ht/~azikx/wallpapers/blob/main/dotfiles/workst/btop.png)
|
||||
|
||||
![ауе](https://git.sr.ht/~azikx/wallpapers/blob/main/dotfiles/workst/yazi.png)
|
||||
![ауе](https://git.sr.ht/~neverness/wallpapers/blob/main/dotfiles/workst/btop.png)
|
||||
|
||||
![ауе](https://git.sr.ht/~neverness/wallpapers/blob/main/dotfiles/workst/yazi.png)
|
||||
|
||||
#### ENGLISH OR SPANISH??? WHOEVER MOVES IS GAY)))))))
|
||||
|
||||
#### THANKS FOR [hezaki](https://codeberg.org/Hezaki/Touka/), [maxmurr](https://github.com/TheMaxMur/NixOS-Configuration), [artem](https://github.com/ArtemChandragupta/NixFlake)
|
||||
|
|
|
@ -7,10 +7,9 @@ in {
|
|||
options = { module.programs.cli.cava = { enable = mkEnableOption ""; }; };
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.cava = {
|
||||
enable = true;
|
||||
settings = {
|
||||
color = with config.lib.stylix.colors; {
|
||||
programs.cava = let
|
||||
gradient = with config.lib.stylix.colors; {
|
||||
rainbow = {
|
||||
gradient = 1;
|
||||
gradient_color_1 = "'#${base0E}'";
|
||||
gradient_color_2 = "'#${base0D}'";
|
||||
|
@ -19,8 +18,17 @@ in {
|
|||
gradient_color_5 = "'#${base0A}'";
|
||||
gradient_color_6 = "'#${base09}'";
|
||||
};
|
||||
beat = {
|
||||
gradient = 1;
|
||||
gradient_color_1 = "'#${base0C}'";
|
||||
gradient_color_2 = "'#${base0D}'";
|
||||
gradient_color_3 = "'#${base0E}'";
|
||||
};
|
||||
};
|
||||
in {
|
||||
enable = true;
|
||||
settings.color = gradient.beat;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{ ... }: {
|
||||
programs.yazi.initLua = ''
|
||||
{ config, ... }: {
|
||||
programs.yazi.initLua = with config.lib.stylix.colors; ''
|
||||
require("no-status"):setup()
|
||||
require("archivemount"):setup()
|
||||
require("full-border"):setup { type = ui.Border.ROUNDED, }
|
||||
|
@ -10,15 +10,15 @@
|
|||
inverse_separator = { open = "", close = "" },
|
||||
|
||||
style_a = {
|
||||
fg = "black",
|
||||
fg = "white",
|
||||
bg_mode = {
|
||||
normal = "blue",
|
||||
select = "yellow",
|
||||
un_set = "red"
|
||||
normal = "#${base02}",
|
||||
select = "#${base02}",
|
||||
un_set = "#${base02}"
|
||||
}
|
||||
},
|
||||
style_b = { bg = "brightblack", fg = "brightwhite" },
|
||||
style_c = { bg = "black", fg = "brightwhite" },
|
||||
style_b = { bg = "#${base03}", fg = "white" },
|
||||
style_c = { bg = "black", fg = "white" },
|
||||
|
||||
permissions_t_fg = "green",
|
||||
permissions_r_fg = "yellow",
|
||||
|
|
32
modules/home/programs/cli/zellij/default.nix
Normal file
32
modules/home/programs/cli/zellij/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ lib, config, True, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let cfg = config.module.programs.cli.zellij;
|
||||
in {
|
||||
options = { module.programs.cli.zellij = { enable = mkEnableOption ""; }; };
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.zellij = True // {
|
||||
settings = {
|
||||
pane_frames = true;
|
||||
default_layout = "compact";
|
||||
mouse_mode = false;
|
||||
themes.base16 = with config.lib.stylix.colors; {
|
||||
fg = "#${base06}";
|
||||
bg = "#${base00}";
|
||||
black = "#${base01}";
|
||||
red = "#${base08}";
|
||||
green = "#${base0B}";
|
||||
yellow = "#${base09}";
|
||||
blue = "#${base0D}";
|
||||
magenta = "#${base0E}";
|
||||
cyan = "#${base0C}";
|
||||
white = "#${base0F}";
|
||||
orange = "#${base09}";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -7,6 +7,7 @@
|
|||
./spotify
|
||||
./swayimg
|
||||
./thunderbird
|
||||
./zed
|
||||
./pkgs.nix
|
||||
];
|
||||
}
|
||||
|
|
22
modules/home/programs/gui/zed/default.nix
Normal file
22
modules/home/programs/gui/zed/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ pkgs, lib, config, True, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let cfg = config.module.programs.gui.zed;
|
||||
in {
|
||||
options = { module.programs.gui.zed = { enable = mkEnableOption ""; }; };
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.zed-editor = True // {
|
||||
extensions = [ "nix" "city-lights" ];
|
||||
userSettings = {
|
||||
features = { copilot = false; };
|
||||
telemetry = { metrics = false; };
|
||||
vim_mode = true;
|
||||
ui_font_size = 16;
|
||||
buffer_font_size = 16;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -29,6 +29,7 @@
|
|||
spotify = True;
|
||||
swayimg = True;
|
||||
thunderbird = False;
|
||||
zed = False;
|
||||
};
|
||||
};
|
||||
shells = { # SHELLS
|
||||
|
|
Loading…
Reference in a new issue