[development] Adds more development utils.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ pkgs, ... }:
|
||||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
# Dev apps
|
||||
@@ -12,8 +12,10 @@
|
||||
./lua.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
# Dev helpers
|
||||
direnv
|
||||
];
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
enableBashIntegration = true;
|
||||
enableZshIntegration = true;
|
||||
nix-direnv.enable = true;
|
||||
};
|
||||
}
|
||||
|
||||
11
home-manager/features/development/docker.nix
Normal file
11
home-manager/features/development/docker.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
# Use podman over docker
|
||||
services.podman = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
podman-compose
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user