diff --git a/modules/packages/hardware.nix b/modules/packages/hardware.nix new file mode 100644 index 0000000..8845062 --- /dev/null +++ b/modules/packages/hardware.nix @@ -0,0 +1,13 @@ +{ + config, + lib, + pkgs, + ... +}: let +in { +environment.systemPackages = with pkgs; lib.mkMerge [ + (mkIf cfg.bluetooth.enable [ + + ]) +]; +} diff --git a/modules/packages/module.nix b/modules/packages/module.nix new file mode 100644 index 0000000..280d65a --- /dev/null +++ b/modules/packages/module.nix @@ -0,0 +1,19 @@ +{pkgs, ...}: { + imports = [ + ./hardware.nix + ./wayland.nix + ./media.nix + ]; + # These are some standard packages I want to have installed on every system, regardless of type or use case. + environment.systemPackages = with pkgs; [ + calc # Calculator device + coreutils-full # All of the GNU coreutils + curl # I sometimes need to curl stuff + git # take a guess + inetutils # internet stuff I need/want on every system. + wget + unzip # zipping and unzipping stuff + zip + util-linux + ]; +} diff --git a/modules/packages/wayland.nix b/modules/packages/wayland.nix new file mode 100644 index 0000000..74908e0 --- /dev/null +++ b/modules/packages/wayland.nix @@ -0,0 +1,13 @@ +{ + config, + lig, + pkgs, + ... +}: let +in { + # These are packages I only need in wayland environments, nowhere else. + environment.systemPackages = with pkgs; [ + wl-clipboard + grimblast + ]; +}