mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
Add tungsten (#9)
Reviewed-on: https://codeberg.org/leana8959/.files/pulls/9 Co-authored-by: Léana 江 <leana.jiang+git@icloud.com> Co-committed-by: Léana 江 <leana.jiang+git@icloud.com>
This commit is contained in:
parent
1848be039a
commit
b20a752858
41 changed files with 1749 additions and 43 deletions
131
nix/configurations/tungsten/home/programs.nix
Normal file
131
nix/configurations/tungsten/home/programs.nix
Normal file
|
|
@ -0,0 +1,131 @@
|
|||
{pkgs, ...}: let
|
||||
inherit (pkgs) myPkgs;
|
||||
in {
|
||||
imports = [
|
||||
#
|
||||
# CLI / TUI
|
||||
#
|
||||
{
|
||||
home.packages = [
|
||||
pkgs.stow
|
||||
pkgs.zip
|
||||
pkgs.unzip
|
||||
pkgs.gnutar
|
||||
pkgs.p7zip
|
||||
pkgs.bc
|
||||
pkgs.dig
|
||||
myPkgs.hutils
|
||||
# pkgs.miniserve
|
||||
pkgs.agenix
|
||||
|
||||
# pdf
|
||||
# pkgs.poppler_utils # pdfseparate, pdfunite
|
||||
# myPkgs.easyscan
|
||||
|
||||
# fun
|
||||
# myPkgs.prop-solveur
|
||||
# myPkgs.hbf
|
||||
# pkgs.lucky-commit
|
||||
|
||||
# pretty tui tools
|
||||
pkgs.du-dust
|
||||
pkgs.tldr
|
||||
myPkgs.tokei
|
||||
pkgs.hyperfine
|
||||
pkgs.watchexec
|
||||
pkgs.onefetch
|
||||
pkgs.just
|
||||
|
||||
# nix tools
|
||||
pkgs.alejandra
|
||||
# pkgs.nh
|
||||
pkgs.nix-output-monitor
|
||||
pkgs.nix-tree
|
||||
pkgs.nurl
|
||||
pkgs.nvd
|
||||
pkgs.niv
|
||||
# myPkgs.nd
|
||||
];
|
||||
programs = {
|
||||
neovim.enable = true;
|
||||
neovim.defaultEditor = true;
|
||||
fish.enable = true;
|
||||
starship.enable = true;
|
||||
tmux.enable = true;
|
||||
direnv.enable = true;
|
||||
ripgrep.enable = true;
|
||||
|
||||
password-store.enable = true;
|
||||
|
||||
# ROCm support is needed for AMD GPU
|
||||
# https://github.com/aristocratos/btop?tab=readme-ov-file#gpu-compatibility
|
||||
btop.enable = true;
|
||||
btop.package = pkgs.btop-rocm;
|
||||
|
||||
cmus.enable = true;
|
||||
ranger.enable = true;
|
||||
};
|
||||
}
|
||||
|
||||
#
|
||||
# GUI
|
||||
#
|
||||
{
|
||||
home.packages = [
|
||||
# productivity / media
|
||||
# pkgs.evolution
|
||||
# pkgs.libreoffice
|
||||
# pkgs.iamb
|
||||
# pkgs.calibre
|
||||
# pkgs.rawtherapee
|
||||
# pkgs.digikam
|
||||
# pkgs.gimp
|
||||
pkgs.vlc
|
||||
pkgs.nautilus
|
||||
pkgs.sushi # space bar previewer
|
||||
# pkgs.blender
|
||||
# pkgs.inkscape
|
||||
# pkgs.aseprite
|
||||
|
||||
# wm utilities
|
||||
myPkgs.xbrightness
|
||||
pkgs.dmenu
|
||||
pkgs.xclip
|
||||
pkgs.playerctl # talk to playerctld
|
||||
pkgs.hacksaw
|
||||
pkgs.shotgun
|
||||
pkgs.xscreensaver # talk to xscreensaver
|
||||
pkgs.xcolor
|
||||
# pkgs.boomer
|
||||
|
||||
# audio utilities
|
||||
pkgs.helvum
|
||||
pkgs.pavucontrol
|
||||
];
|
||||
|
||||
programs = {
|
||||
feh.enable = true;
|
||||
sioyek.enable = true;
|
||||
|
||||
kitty.enable = true;
|
||||
};
|
||||
|
||||
services = {
|
||||
wired.enable = true;
|
||||
playerctld.enable = true;
|
||||
gpg-agent.enable = true;
|
||||
|
||||
gnome-keyring = {
|
||||
enable = true;
|
||||
components = ["secrets"];
|
||||
};
|
||||
|
||||
battery-notify = {
|
||||
enable = true;
|
||||
device_full = "/sys/class/power_supply/BAT0/charge_full";
|
||||
device_now = "/sys/class/power_supply/BAT0/charge_now";
|
||||
};
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue