remake dir structure for home-manager
This commit is contained in:
parent
9415d40508
commit
3151b79560
26 changed files with 9 additions and 9 deletions
14
home/features/devel/default.nix
Normal file
14
home/features/devel/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./php.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
gcc
|
||||
gnumake
|
||||
unzip
|
||||
openssl
|
||||
autoconf
|
||||
];
|
||||
}
|
8
home/features/devel/php.nix
Normal file
8
home/features/devel/php.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
# install php from nixpkgs because mise wants to compile it from source,
|
||||
# and that's a whole can of beans i'm not getting into
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
php83
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue