diff options
author | Minijackson <minijackson@riseup.net> | 2024-04-21 09:11:26 +0200 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2024-04-21 09:11:26 +0200 |
commit | acffe0f498d4ca9c24611dffb521163c2a054577 (patch) | |
tree | 423483ebae7d80ad19e3c66b3a35ec72acc8a65e | |
parent | 1d34ab09f5f742ae042169ee4ac0778ecf5bfe52 (diff) | |
download | nixos-config-reborn-acffe0f498d4ca9c24611dffb521163c2a054577.tar.gz nixos-config-reborn-acffe0f498d4ca9c24611dffb521163c2a054577.zip |
common/commandline: move commandline tools here
-rw-r--r-- | common/commandline.nix | 29 | ||||
-rw-r--r-- | configuration.nix | 29 | ||||
-rw-r--r-- | usecases/desktop/graphical.nix | 1 |
3 files changed, 29 insertions, 30 deletions
diff --git a/common/commandline.nix b/common/commandline.nix index 4288ded..00ceb15 100644 --- a/common/commandline.nix +++ b/common/commandline.nix | |||
@@ -18,6 +18,35 @@ in { | |||
18 | (import ./commandline/zsh.nix inputs) | 18 | (import ./commandline/zsh.nix inputs) |
19 | ]; | 19 | ]; |
20 | 20 | ||
21 | environment.systemPackages = with pkgs; [ | ||
22 | dnsutils | ||
23 | dogdns | ||
24 | elinks | ||
25 | fd | ||
26 | file | ||
27 | gnupg | ||
28 | hddtemp | ||
29 | jq | ||
30 | lm_sensors | ||
31 | lsof | ||
32 | moreutils | ||
33 | ncdu | ||
34 | nethogs | ||
35 | nix-prefetch-scripts | ||
36 | unstable.alejandra | ||
37 | progress | ||
38 | psmisc | ||
39 | ripgrep | ||
40 | shellcheck | ||
41 | shfmt | ||
42 | smartmontools | ||
43 | tmux | ||
44 | tree | ||
45 | vim | ||
46 | wget | ||
47 | wipe | ||
48 | ]; | ||
49 | |||
21 | console = { | 50 | console = { |
22 | # packages = with pkgs; [terminus_font]; | 51 | # packages = with pkgs; [terminus_font]; |
23 | # font = "ter-d22n"; | 52 | # font = "ter-d22n"; |
diff --git a/configuration.nix b/configuration.nix index b686116..0b067eb 100644 --- a/configuration.nix +++ b/configuration.nix | |||
@@ -3,35 +3,6 @@ inputs: {pkgs, ...}: { | |||
3 | (import ./common/default.nix inputs) | 3 | (import ./common/default.nix inputs) |
4 | ]; | 4 | ]; |
5 | 5 | ||
6 | environment.systemPackages = with pkgs; [ | ||
7 | dnsutils | ||
8 | dogdns | ||
9 | elinks | ||
10 | fd | ||
11 | file | ||
12 | gnupg | ||
13 | hddtemp | ||
14 | jq | ||
15 | lm_sensors | ||
16 | lsof | ||
17 | moreutils | ||
18 | ncdu | ||
19 | nethogs | ||
20 | nix-prefetch-scripts | ||
21 | unstable.alejandra | ||
22 | progress | ||
23 | psmisc | ||
24 | ripgrep | ||
25 | shellcheck | ||
26 | shfmt | ||
27 | smartmontools | ||
28 | tmux | ||
29 | tree | ||
30 | vim | ||
31 | wget | ||
32 | wipe | ||
33 | ]; | ||
34 | |||
35 | home-manager = { | 6 | home-manager = { |
36 | useGlobalPkgs = true; | 7 | useGlobalPkgs = true; |
37 | useUserPackages = true; | 8 | useUserPackages = true; |
diff --git a/usecases/desktop/graphical.nix b/usecases/desktop/graphical.nix index d4b16a1..c9a1973 100644 --- a/usecases/desktop/graphical.nix +++ b/usecases/desktop/graphical.nix | |||
@@ -23,7 +23,6 @@ inputs: { | |||
23 | gnome3.gnome-disk-utility | 23 | gnome3.gnome-disk-utility |
24 | gnome3.gucharmap | 24 | gnome3.gucharmap |
25 | gnome3.nautilus | 25 | gnome3.nautilus |
26 | jq | ||
27 | qutebrowser | 26 | qutebrowser |
28 | xdg-utils | 27 | xdg-utils |
29 | xsel | 28 | xsel |