Add essential packages
This commit is contained in:
parent
4386ea7477
commit
fabf20e303
|
@ -66,6 +66,7 @@
|
||||||
|
|
||||||
# Import other configuration modules
|
# Import other configuration modules
|
||||||
imports = [
|
imports = [
|
||||||
|
./modules/software.nix
|
||||||
./modules/networking.nix
|
./modules/networking.nix
|
||||||
./modules/gui.nix
|
./modules/gui.nix
|
||||||
];
|
];
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
# Developement
|
||||||
|
git lorri
|
||||||
|
# Monitoring
|
||||||
|
htop
|
||||||
|
# Text editors
|
||||||
|
neovim emacs
|
||||||
|
# Terminal multiplexing
|
||||||
|
tmux tmuxp
|
||||||
|
# Password management
|
||||||
|
pass passff-host
|
||||||
|
# Browsers
|
||||||
|
firefox chromium
|
||||||
|
# LaTeX
|
||||||
|
tectonic pandoc
|
||||||
|
];
|
||||||
|
|
||||||
|
# Fonts declaration
|
||||||
|
fonts = {
|
||||||
|
fonts = with pkgs; [
|
||||||
|
google-fonts
|
||||||
|
siji
|
||||||
|
cherry
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue