mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-06-21 10:17:46 +02:00
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:
parent
711791fcc5
commit
f55b5ae2db
@ -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
|
||||||
|
@ -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 = {
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
{ pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
(pkgs.callPackage ./package {})
|
|
||||||
];
|
|
||||||
}
|
|
@ -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;
|
||||||
|
@ -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 = {
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
(pkgs.callPackage ./package {})
|
(pkgs.callPackage ../../packages/srb2 { })
|
||||||
slade
|
slade
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
environment.systemPackages = [
|
environment.systemPackages = [
|
||||||
(pkgs.callPackage ./package {})
|
(pkgs.callPackage ../../packages/joshuto { })
|
||||||
];
|
];
|
||||||
|
|
||||||
home-manager.sharedModules = [{
|
home-manager.sharedModules = [{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user