meta: Use separate packages directory

This makes it easier to see all the custom packages in the repository
and reduces the amount of nested directories.
This commit is contained in:
Donovan Glover 2023-06-04 08:50:44 -04:00
parent 711791fcc5
commit f55b5ae2db
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
17 changed files with 7 additions and 14 deletions

View File

@ -6,7 +6,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
xfce.exo # Open with kitty support xfce.exo # Open with kitty support
glib glib
(pkgs.callPackage ./go-thumbnailer {}) (pkgs.callPackage ../../packages/go-thumbnailer { })
]; ];
services.gvfs.enable = true; # Trash support services.gvfs.enable = true; # Trash support
services.gnome.gnome-keyring.enable = true; # Mount support services.gnome.gnome-keyring.enable = true; # Mount support

View File

@ -7,7 +7,6 @@
./fcitx5-mozc ./fcitx5-mozc
./fonts ./fonts
./hyprland ./hyprland
./nwg-dock
./pipewire ./pipewire
./rofi ./rofi
./stylix ./stylix
@ -25,6 +24,7 @@
swww swww
kickoff kickoff
greetd.tuigreet greetd.tuigreet
(pkgs.callPackage ../packages/nwg-dock { })
]; ];
services.greetd = { services.greetd = {

View File

@ -1,7 +0,0 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
(pkgs.callPackage ./package {})
];
}

View File

@ -5,8 +5,8 @@
programs.rofi = { programs.rofi = {
enable = true; enable = true;
package = (pkgs.callPackage ./package/wrapper.nix { package = (pkgs.callPackage ../../packages/rofi/wrapper.nix {
rofi-unwrapped = (pkgs.callPackage ./package/wayland.nix { }); rofi-unwrapped = (pkgs.callPackage ../../packages/rofi/wayland.nix { });
}); });
cycle = false; cycle = false;

View File

@ -4,7 +4,7 @@
home-manager.sharedModules = [{ home-manager.sharedModules = [{
programs.waybar = { programs.waybar = {
enable = true; enable = true;
package = (pkgs.callPackage ./package { }); package = (pkgs.callPackage ../../packages/waybar { });
settings = { settings = {
mainBar = { mainBar = {

View File

@ -2,7 +2,7 @@
{ {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
(pkgs.callPackage ./package {}) (pkgs.callPackage ../../packages/srb2 { })
slade slade
]; ];
} }

View File

@ -2,7 +2,7 @@
{ {
environment.systemPackages = [ environment.systemPackages = [
(pkgs.callPackage ./package {}) (pkgs.callPackage ../../packages/joshuto { })
]; ];
home-manager.sharedModules = [{ home-manager.sharedModules = [{