1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 03:27:45 +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

1
.gitignore vendored
View file

@ -40,6 +40,7 @@
!modules/steam/
!modules/steck/
!modules/sudo/
!modules/w3m/
!modules/waybar/
!lib/

View file

@ -54,5 +54,6 @@
"steam"
"steck"
"sudo"
"w3m"
"waybar"
])

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";
};
})