mirror of
https://git.gay/xqtc/nixos-config
synced 2025-05-10 15:47:29 +02:00
hyfetch; alejandra
This commit is contained in:
parent
8479a7d5d9
commit
3294f24b34
8 changed files with 58 additions and 32 deletions
home/modules
hosts/x86_64-linux
|
@ -64,6 +64,8 @@ in {
|
|||
|
||||
bat
|
||||
|
||||
alejandra
|
||||
|
||||
ncspot
|
||||
|
||||
opentofu
|
||||
|
|
|
@ -70,15 +70,15 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
"core.dirman.utils" = {
|
||||
__empty = null;
|
||||
};
|
||||
"core.completion" = {
|
||||
config = {
|
||||
engine = "nvim-cmp";
|
||||
name = "neorg";
|
||||
};
|
||||
};
|
||||
"core.dirman.utils" = {
|
||||
__empty = null;
|
||||
};
|
||||
"core.completion" = {
|
||||
config = {
|
||||
engine = "nvim-cmp";
|
||||
name = "neorg";
|
||||
};
|
||||
};
|
||||
"core.concealer" = {
|
||||
__empty = null;
|
||||
};
|
||||
|
@ -317,7 +317,7 @@
|
|||
{name = "path";}
|
||||
{name = "buffer";}
|
||||
{name = "luasnip";}
|
||||
{name = "neorg";}
|
||||
{name = "neorg";}
|
||||
# {name = "copilot";}
|
||||
];
|
||||
#mapping = {
|
||||
|
@ -413,12 +413,12 @@
|
|||
# "⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ "
|
||||
# ];
|
||||
val = [
|
||||
""
|
||||
""
|
||||
""
|
||||
""
|
||||
""
|
||||
""
|
||||
""
|
||||
""
|
||||
""
|
||||
""
|
||||
""
|
||||
""
|
||||
" /^>》, -―‐‐<^}"
|
||||
" ./:::/,≠´::::::ヽ."
|
||||
" /::::〃::::/}::丿ハ"
|
||||
|
@ -428,7 +428,7 @@
|
|||
" |:::::::|/}`ス / /"
|
||||
". |::::::|(_:::つ/ ThinkPad / neovim!"
|
||||
". ̄ ̄ ̄ ̄ ̄ ̄ ̄\/_____/ ̄ ̄ ̄ ̄ ̄"
|
||||
""
|
||||
""
|
||||
];
|
||||
#val = [
|
||||
# " ███████████████ ██████████████████"
|
||||
|
|
|
@ -19,9 +19,9 @@
|
|||
envExtra = "ZELLIJ_AUTO_ATTACH=true\n";
|
||||
initExtraFirst =
|
||||
if !(config.os == "linux")
|
||||
then "export PATH=$PATH:~/.cargo/bin/\n${pkgs.pfetch-rs}/bin/pfetch\n"
|
||||
then "export PATH=$PATH:~/.cargo/bin/\n${pkgs.hyfetch}/bin/hyfetch\n"
|
||||
else
|
||||
"${pkgs.pfetch-rs}/bin/pfetch\neval $(ssh-agent)\n"
|
||||
"${pkgs.hyfetch}/bin/hyfetch\neval $(ssh-agent)\n"
|
||||
+ (
|
||||
if config.host == "asmodeus"
|
||||
then "comin status\n"
|
||||
|
@ -39,6 +39,20 @@
|
|||
}
|
||||
];
|
||||
};
|
||||
hyfetch = {
|
||||
enable = true;
|
||||
settings = {
|
||||
preset = "transfeminine";
|
||||
mode = "rgb";
|
||||
light_dark = "dark";
|
||||
lightness = 0.5;
|
||||
color_align = {
|
||||
mode = "horizontal";
|
||||
custom_colors = [];
|
||||
fore_back = null;
|
||||
};
|
||||
};
|
||||
};
|
||||
atuin = {
|
||||
enable = true;
|
||||
enableNushellIntegration = true;
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
enable = true;
|
||||
matchBlocks = {
|
||||
"ryuko.suizid.jetzt" = {
|
||||
user = "root";
|
||||
user = "root";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
services.hypridle = {
|
||||
enable = true;
|
||||
|
||||
|
||||
settings = {
|
||||
general = {
|
||||
lock_cmd = "pidof hyprlock || hyprlock";
|
||||
|
@ -41,7 +41,11 @@
|
|||
|
||||
imports = [inputs.hyprpanel.homeManagerModules.hyprpanel];
|
||||
programs.hyprpanel = {
|
||||
enable = ( if (config.host != "yosai") then true else false);
|
||||
enable = (
|
||||
if (config.host != "yosai")
|
||||
then true
|
||||
else false
|
||||
);
|
||||
systemd.enable = false;
|
||||
hyprland.enable = true;
|
||||
overwrite.enable = true;
|
||||
|
|
|
@ -149,11 +149,11 @@
|
|||
file_server
|
||||
'';
|
||||
};
|
||||
# "sf.heroin.trade" = {
|
||||
# extraConfig = ''
|
||||
# reverse_proxy http://127.0.0.1:8082
|
||||
# '';
|
||||
# };
|
||||
# "sf.heroin.trade" = {
|
||||
# extraConfig = ''
|
||||
# reverse_proxy http://127.0.0.1:8082
|
||||
# '';
|
||||
# };
|
||||
"servers" = {
|
||||
extraConfig = ''
|
||||
metrics
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
{config, lib, inputs, ...}:
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
services.seafile = {
|
||||
enable = true;
|
||||
|
||||
|
|
|
@ -20,10 +20,12 @@
|
|||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
swapDevices = [ {
|
||||
device = "/var/lib/swapfile";
|
||||
size = 8*1024;
|
||||
} ];
|
||||
swapDevices = [
|
||||
{
|
||||
device = "/var/lib/swapfile";
|
||||
size = 8 * 1024;
|
||||
}
|
||||
];
|
||||
|
||||
boot.kernelPackages = pkgs.linuxPackages_zen;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue