[development] Adds more development utils.
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
{ pkgs, ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
# Dev apps
|
# Dev apps
|
||||||
@@ -12,8 +12,10 @@
|
|||||||
./lua.nix
|
./lua.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
programs.direnv = {
|
||||||
# Dev helpers
|
enable = true;
|
||||||
direnv
|
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
|
||||||
|
];
|
||||||
|
}
|
||||||
@@ -9,11 +9,12 @@ in
|
|||||||
imports =
|
imports =
|
||||||
map (x: ../../../home-manager + x) [
|
map (x: ../../../home-manager + x) [
|
||||||
"/features/development/development.nix"
|
"/features/development/development.nix"
|
||||||
|
"/features/development/docker.nix"
|
||||||
"/features/development/haskell.nix"
|
"/features/development/haskell.nix"
|
||||||
|
"/features/eww"
|
||||||
"/features/gaming.nix"
|
"/features/gaming.nix"
|
||||||
"/features/linux-desktop.nix"
|
"/features/linux-desktop.nix"
|
||||||
"/features/notes.nix"
|
"/features/notes.nix"
|
||||||
"/features/eww"
|
|
||||||
]
|
]
|
||||||
++ [
|
++ [
|
||||||
(import ../../../home-manager/features/wallpaper.nix monitors)
|
(import ../../../home-manager/features/wallpaper.nix monitors)
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
map (x: ../../../home-manager + x) [
|
map (x: ../../../home-manager + x) [
|
||||||
"/features/development/development.nix"
|
"/features/development/development.nix"
|
||||||
"/features/development/haskell.nix"
|
"/features/development/haskell.nix"
|
||||||
|
"/features/development/docker.nix"
|
||||||
"/features/linux-desktop.nix"
|
"/features/linux-desktop.nix"
|
||||||
"/features/notes.nix"
|
"/features/notes.nix"
|
||||||
"/features/eww"
|
"/features/eww"
|
||||||
|
|||||||
Reference in New Issue
Block a user