-
Notifications
You must be signed in to change notification settings - Fork 0
/
programs.nix
72 lines (62 loc) · 1.73 KB
/
programs.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
65
66
67
68
69
70
71
72
{ config, pkgs, specialArgs, lib, overlays, ... }:
let
helpers = import ./helpers.nix {
inherit pkgs lib config specialArgs;
};
in {
home.packages = [
# Some guy config over the internet
# pkgs.etcher
# pkgs.chromium
# pkgs.firefox
# pkgs.onlyoffice-bin
# pkgs.inkscape
# pkgs.gimp
# pkgs.pywal
# pkgs.wpgtk
# pkgs.syncthing
# pkgs.xorg.xinput
# pkgs.gammastep
# pkgs.autotiling
# pkgs.dmenu-rs
# pkgs.feh
# pkgs.eza
# pkgs.dunst
# pkgs.arandr
# (helpers.nixGLVulkanMesaWrap pkgs.picom)
# (helpers.nixGLMesaWrap pkgs.kitty)
# (helpers.nixGLMesaWrap pkgs.ytfzf)
# Adds the 'cowsay' command to your environment.
pkgs.cowsay
# Tells you your daily fortune message.
pkgs.fortune
# Monitor the cpu and memory load.
pkgs.htop
# Adds the 'ponysay' command to your environment.
(pkgs.ponysay.overrideAttrs {
patches = [
(pkgs.fetchpatch {
url = "https://github.com/erkin/ponysay/pull/313.patch";
hash = "sha256-394drlO4sNH02Ej77cI6H/v15c91zm5Fo3g5A3xWkx4=";
})
];
})
# Text editor.
pkgs.emacs
# Package manager.
pkgs.git
# Versatile IDE.
# pkgs.vscode
# Fancy shell. To activate globally on linux:
pkgs.fish
# It is sometimes useful to fine-tune packages, for example, by applying overrides.
# (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; })
# You can also create simple shell scripts directly inside your configuration.
# (pkgs.writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!"
# '')
# Allow one to run github actions locally using docker.
pkgs.act
pkgs.glxinfo
];
}