refactor(just): Give Just it's own programs/ module
"It's overkill to give every single package it's own nix module" yeah probably. I do it so that I never have to guess where something's configuration lives again. Just open up marleyos/ in lazyvim, hit <space><space>, search for program, profit. The only exception is stuff specific to programming languages, such as language servers and aliases to php artisan. Those live under languages/<language>. Eventually I'd like to make dev shells for each.
This commit is contained in:
parent
9bcb314408
commit
b8b4759f17
3 changed files with 7 additions and 4 deletions
|
@ -45,10 +45,6 @@
|
||||||
# Autostart wanted systemd services.
|
# Autostart wanted systemd services.
|
||||||
systemd.user.startServices = true;
|
systemd.user.startServices = true;
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
just
|
|
||||||
];
|
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./appearance
|
./appearance
|
||||||
./languages
|
./languages
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
./fzf.nix
|
./fzf.nix
|
||||||
./gh.nix
|
./gh.nix
|
||||||
./hyfetch.nix
|
./hyfetch.nix
|
||||||
|
./just.nix
|
||||||
./lazygit.nix
|
./lazygit.nix
|
||||||
./less.nix
|
./less.nix
|
||||||
./man.nix
|
./man.nix
|
||||||
|
|
6
home/programs/just.nix
Normal file
6
home/programs/just.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
just
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue