1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 19:47:47 +00:00
This commit is contained in:
RGBCube 2023-12-26 12:00:17 +03:00
parent 4feb8efb85
commit 4deca09953
No known key found for this signature in database
3 changed files with 14 additions and 0 deletions

12
modules/w3m/default.nix Normal file
View file

@ -0,0 +1,12 @@
{ ulib, pkgs, ... }: with ulib; merge
(systemPackages (with pkgs; [
w3m
]))
(homeConfiguration {
programs.nushell.shellAliases = {
ddg = "w3m lite.duckduckgo.com";
web = "w3m";
};
})