-
Notifications
You must be signed in to change notification settings - Fork 0
/
miscpkgs.nix
32 lines (29 loc) · 892 Bytes
/
miscpkgs.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
{ config, lib, pkgs, ... }: {
home.packages = with pkgs;
[
vale
xdg-ninja
animdl
adl
mcstatus
# wlx-overlay-s
# hyprland
# vesktop
# jprofiler
unimatrix
postgres-lsp
catppuccin
# zoom-us
# # It is sometimes useful to fine-tune packages, for example, by applying
# # overrides. You can do that directly here, just don't forget the
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of
# # fonts?
# (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; })
# # You can also create simple shell scripts directly inside your
# # configuration. For example, this adds a command 'my-hello' to your
# # environment:
# (pkgs.writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!"
# '')
];
}