32 lines
456 B
Nix
32 lines
456 B
Nix
# This is your system's configuration file.
|
|
# Use this to configure your system environment (it replaces /etc/nixos/configuration.nix)
|
|
{
|
|
inputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
myhostname,
|
|
...
|
|
}: {
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
unstable.feishin
|
|
pastel
|
|
libreoffice
|
|
unstable.signal-desktop
|
|
pinta
|
|
zathura
|
|
vial
|
|
thunderbird
|
|
lazygit
|
|
byzanz
|
|
remmina
|
|
obsidian
|
|
speedcrunch
|
|
discord
|
|
slack
|
|
feh
|
|
pavucontrol
|
|
scrot
|
|
];
|
|
}
|