mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-31 04:04:32 +00:00
distrobox: add module (#6528)
Added programs/distrobox.nix module. It provides the option "programs.distrobox.containers", which makes it possible to declare a list of containers to be created. Since building those containers is not possible at build time (because none container backend is available at that time), I also added a Systemd Unit to build those containers after switching the configuration.
This commit is contained in:
parent
d61711497b
commit
8a68f18e96
6 changed files with 160 additions and 0 deletions
|
@ -88,6 +88,7 @@ let
|
|||
./programs/dircolors.nix
|
||||
./programs/direnv.nix
|
||||
./programs/discocss.nix
|
||||
./programs/distrobox.nix
|
||||
./programs/earthly.nix
|
||||
./programs/eclipse.nix
|
||||
./programs/emacs.nix
|
||||
|
|
96
modules/programs/distrobox.nix
Normal file
96
modules/programs/distrobox.nix
Normal file
|
@ -0,0 +1,96 @@
|
|||
{ lib, pkgs, config, ... }:
|
||||
let
|
||||
inherit (lib) generators types mkIf mkEnableOption mkPackageOption mkOption;
|
||||
|
||||
cfg = config.programs.distrobox;
|
||||
|
||||
formatter = pkgs.formats.ini { listsAsDuplicateKeys = true; };
|
||||
in {
|
||||
meta.maintainers = with lib.hm.maintainers; [ aguirre-matteo ];
|
||||
|
||||
options.programs.distrobox = {
|
||||
enable = mkEnableOption "distrobox";
|
||||
|
||||
package = mkPackageOption pkgs "distrobox" { };
|
||||
|
||||
containers = mkOption {
|
||||
type = formatter.type;
|
||||
default = { };
|
||||
example = ''
|
||||
{
|
||||
python-project = {
|
||||
image = "fedora:40";
|
||||
additional_packages = "python3 git";
|
||||
init_hooks = "pip3 install numpy pandas torch torchvision";
|
||||
};
|
||||
|
||||
common-debian = {
|
||||
image = "debian:13";
|
||||
entry = true;
|
||||
additional_packages = "git";
|
||||
init_hooks = [
|
||||
"ln -sf /usr/bin/distrobox-host-exec /usr/local/bin/docker"
|
||||
"ln -sf /usr/bin/distrobox-host-exec /usr/local/bin/docker-compose"
|
||||
];
|
||||
};
|
||||
|
||||
office = {
|
||||
clone = "common-debian";
|
||||
additional_packages = "libreoffice onlyoffice";
|
||||
entry = true;
|
||||
};
|
||||
|
||||
random-things = {
|
||||
clone = "common-debian";
|
||||
entry = false;
|
||||
};
|
||||
}
|
||||
'';
|
||||
description = ''
|
||||
A set of containers and all its respective configurations. Each option cat be either a
|
||||
bool, string or a list of strings. If passed a list, the option will be repeated for each element.
|
||||
See common-debian in the example config. All the available options for the containers can be found
|
||||
in the distrobox-assemble documentation at <https://github.com/89luca89/distrobox/blob/main/docs/usage/distrobox-assemble.md>.
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
assertions = [
|
||||
(lib.hm.assertions.assertPlatform "programs.distrobox" pkgs
|
||||
lib.platforms.linux)
|
||||
];
|
||||
|
||||
home.packages = [ cfg.package ];
|
||||
|
||||
xdg.configFile."distrobox/containers.ini".source =
|
||||
(formatter.generate "containers.ini" cfg.containers);
|
||||
|
||||
systemd.user.services.distrobox-home-manager = {
|
||||
Unit.Description =
|
||||
"Build the containers declared in ~/.config/distrobox/containers.ini";
|
||||
Install.WantedBy = [ "default.target" ];
|
||||
|
||||
Service.ExecStart = "${pkgs.writeShellScript "distrobox-home-manager" ''
|
||||
PATH=/run/current-system/sw/bin:
|
||||
|
||||
containers_file=${config.xdg.configHome}/distrobox/containers.ini
|
||||
prev_hash_file=${config.xdg.configHome}/distrobox/prev_hash
|
||||
new_hash=$(sha256sum $containers_file | cut -f 1 -d " ")
|
||||
|
||||
if [[ -f $prev_hash_file ]]; then
|
||||
prev_hash=$(cat $prev_hash_file)
|
||||
else
|
||||
prev_hash=0
|
||||
fi
|
||||
|
||||
if [[ $prev_hash != $new_hash ]]; then
|
||||
rm -rf /tmp/storage-run-1000/containers
|
||||
rm -rf /tmp/storage-run-1000/libpod/tmp
|
||||
$HOME/.nix-profile/bin/distrobox-assemble create --file $containers_file
|
||||
echo $new_hash > $prev_hash_file
|
||||
fi
|
||||
''}";
|
||||
};
|
||||
};
|
||||
}
|
|
@ -442,6 +442,7 @@ in import nmtSrc {
|
|||
./modules/programs/bemenu
|
||||
./modules/programs/boxxy
|
||||
./modules/programs/cavalier
|
||||
./modules/programs/distrobox
|
||||
./modules/programs/eww
|
||||
./modules/programs/firefox
|
||||
./modules/programs/firefox/firefox.nix
|
||||
|
|
1
tests/modules/programs/distrobox/default.nix
Normal file
1
tests/modules/programs/distrobox/default.nix
Normal file
|
@ -0,0 +1 @@
|
|||
{ distrobox-example-config = ./example-config.nix; }
|
20
tests/modules/programs/distrobox/example-config.ini
Normal file
20
tests/modules/programs/distrobox/example-config.ini
Normal file
|
@ -0,0 +1,20 @@
|
|||
[common-debian]
|
||||
additional_packages=git
|
||||
entry=true
|
||||
image=debian:13
|
||||
init_hooks=ln -sf /usr/bin/distrobox-host-exec /usr/local/bin/docker
|
||||
init_hooks=ln -sf /usr/bin/distrobox-host-exec /usr/local/bin/docker-compose
|
||||
|
||||
[office]
|
||||
additional_packages=libreoffice onlyoffice
|
||||
clone=common-debian
|
||||
entry=true
|
||||
|
||||
[python-project]
|
||||
additional_packages=python3 git
|
||||
image=fedora:40
|
||||
init_hooks=pip3 install numpy pandas torch torchvision
|
||||
|
||||
[random-things]
|
||||
clone=common-debian
|
||||
entry=false
|
41
tests/modules/programs/distrobox/example-config.nix
Normal file
41
tests/modules/programs/distrobox/example-config.nix
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
programs.distrobox = {
|
||||
enable = true;
|
||||
containers = {
|
||||
|
||||
python-project = {
|
||||
image = "fedora:40";
|
||||
additional_packages = "python3 git";
|
||||
init_hooks = "pip3 install numpy pandas torch torchvision";
|
||||
};
|
||||
|
||||
common-debian = {
|
||||
image = "debian:13";
|
||||
entry = true;
|
||||
additional_packages = "git";
|
||||
init_hooks = [
|
||||
"ln -sf /usr/bin/distrobox-host-exec /usr/local/bin/docker"
|
||||
"ln -sf /usr/bin/distrobox-host-exec /usr/local/bin/docker-compose"
|
||||
];
|
||||
};
|
||||
|
||||
office = {
|
||||
clone = "common-debian";
|
||||
additional_packages = "libreoffice onlyoffice";
|
||||
entry = true;
|
||||
};
|
||||
|
||||
random-things = {
|
||||
clone = "common-debian";
|
||||
entry = false;
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
|
||||
nmt.script = ''
|
||||
assertFileExists home-files/.config/distrobox/containers.ini
|
||||
assertFileContent home-files/.config/distrobox/containers.ini \
|
||||
${./example-config.ini}
|
||||
'';
|
||||
}
|
Loading…
Add table
Reference in a new issue