h-m: w3m config for kitty and remove vesktop config as it gets spicy
This commit is contained in:
parent
5c697a7cd4
commit
9369a49112
3 changed files with 30 additions and 9 deletions
|
@ -6,5 +6,21 @@
|
|||
environment = {
|
||||
DIRENV_LOG_FORMAT = "";
|
||||
};
|
||||
settings = {
|
||||
wayland_titlebar_color = "system";
|
||||
background_opacity = "0.82";
|
||||
font_size = 16;
|
||||
hide_window_decorations = "no";
|
||||
linux_display_server = "x11";
|
||||
confirm_os_window_close = 0;
|
||||
remember_window_size = "no";
|
||||
initial_window_width = "82c";
|
||||
initial_window_height = "24c";
|
||||
};
|
||||
};
|
||||
|
||||
home.file.".w3m/config".text = ''
|
||||
inline_img_protocol 4
|
||||
imgdisplay kitten icat 2>/dev/null
|
||||
'';
|
||||
}
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
|
||||
home.packages = [ pkgs.vesktop ];
|
||||
|
||||
home.file = let
|
||||
prefix = ".config/VencordDesktop/VencordDesktop";
|
||||
in {
|
||||
"${prefix}/settings.json".source = ./settings.json;
|
||||
"${prefix}/settings/settings.json".source = ./settings/settings.json;
|
||||
"${prefix}/settings/quickCss.css".source = ./settings/quickCss.css;
|
||||
};
|
||||
# xdg.configFile = let
|
||||
# prefix = "VencordDesktop/VencordDesktop";
|
||||
# in {
|
||||
# "${prefix}/settings.json".source = ./settings.json;
|
||||
# "${prefix}/settings/settings.json".source = ./settings/settings.json;
|
||||
# "${prefix}/settings/quickCss.css".source = ./settings/quickCss.css;
|
||||
# };
|
||||
}
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
{ inputs, outputs, lib, ... }:
|
||||
{ inputs, outputs, lib, pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
inputs.sops-nix.homeManagerModules.sops
|
||||
../../features/direnv.nix
|
||||
../../features/git.nix
|
||||
../../features/vim.nix
|
||||
../../features/fish.nix
|
||||
] ++ (builtins.attrValues outputs.homeManagerModules);
|
||||
|
||||
sops.age.sshKeyPaths = ["/etc/ssh/ssh_host_ed25519_key"];
|
||||
|
@ -30,8 +31,12 @@
|
|||
COLORTERM = lib.mkDefault "truecolor";
|
||||
BROWSER = lib.mkDefault "firefox";
|
||||
};
|
||||
};
|
||||
|
||||
packages = with pkgs; [
|
||||
w3m
|
||||
];
|
||||
};
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
home.stateVersion = "24.05";
|
||||
|
|
Loading…
Add table
Reference in a new issue