-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.nix
64 lines (62 loc) · 1.61 KB
/
home.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
pkgs,
...
}:
{
imports = [
./languages.nix
./apps/git.nix
./apps/helix.nix
./apps/yazi.nix
./apps/gitui.nix
./apps/obs.nix
./apps/rio.nix
./apps/sway.nix
./apps/bat.nix
./apps/wezterm.nix
./apps/nushell.nix
./apps/lazygit.nix
./apps/firefox.nix
];
programs = {
zoxide.enable = true;
zoxide.package = pkgs.u.zoxide;
};
home.packages = with pkgs.u; [
### CLI tools
ripgrep # find text in files
fd # find files
skim # find files (fuzzy)
doggo # dns CLI
gh # GitHub CLI
hyperfine # benchmarking tool
tree # tree view of files
p7zip # 7z
pciutils # view connected PCI devices
onefetch # repository information
unar # unzip .rar files
yt-dlp # download tracks from youtube
imagemagick # monster CLI command for working with images
ffmpeg # monster CLI command for working with videos
### apps
zathura # document viewer (e.g. PDF)
termusic # terminal music player
grim # copy slurp screenshots to clipboard (wayland wl-roots)
slurp # take screenshots (wayland wl-roots)
libreoffice # document viewer suite
vial # keyboard configurator
gimp # image editor
scooter # mass search and replace
mpv # video player
quickemu # painless virtual machines
telegram-desktop
### system utilities (background)
brightnessctl # control brightness
vivid # generates LS_COLORS for directories to look awesome
acpi # utility to view battery percentage
wl-clipboard # screenshots on wayland
pamixer # sound control
sof-firmware
];
home.stateVersion = "24.11";
}