h-m: w3m config for kitty and remove vesktop config as it gets spicy

This commit is contained in:
41666 2023-12-17 01:51:08 -05:00
parent 5c697a7cd4
commit 9369a49112
3 changed files with 30 additions and 9 deletions

View file

@ -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";