Files
nixos-config/modules/sys/software/packages.nix
2025-01-06 16:26:44 -05:00

50 lines
873 B
Nix
Executable File

{ lib, config, pkgs, inputs, ... }: {
options = {
movOpts.softwareCfg.sysPkgs.enable =
lib.mkEnableOption "enables default system packages";
};
config = lib.mkIf config.movOpts.softwareCfg.sysPkgs.enable {
environment.systemPackages = with pkgs; [
alsa-lib
xwayland
wayland
alsa-utils
bc
cliphist
fail2ban
git
gcc
lldb
hyprland-workspaces
hyprpaper
hyprpicker
inetutils
kitty
lolcat
lsof
neofetch
nh
nix-index
nix-output-monitor
nix-prefetch-scripts
nixos-option
nix-search-cli
nix-template
nixfmt
sshfs
nvd
pamixer
pavucontrol
playerctl
usbutils
vim
uhk-agent
jq
wl-clipboard
libnotify
file
libvirt-glib
];
};
}