feat(docker): format docker ps output
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
f00aece545
commit
837dd233a6
3 changed files with 7 additions and 0 deletions
BIN
flake.lock
BIN
flake.lock
Binary file not shown.
|
@ -133,6 +133,7 @@ in {
|
|||
home.stateVersion = config.system.stateVersion;
|
||||
};
|
||||
in {
|
||||
root = default;
|
||||
greeter = mkIf (config.services.greetd.enable) default;
|
||||
${cfg.user} = default;
|
||||
};
|
||||
|
|
|
@ -39,6 +39,12 @@ in {
|
|||
environment.systemPackages = [
|
||||
(pkgs.callPackage ./updateImage.nix {})
|
||||
];
|
||||
|
||||
home-manager.users.root.home.file.".docker/config.json".text = ''
|
||||
{
|
||||
"psFormat": "table {{.ID}}\\t{{.Image}}\\t{{.Names}}\\t{{.Status}}"
|
||||
}
|
||||
'';
|
||||
};
|
||||
|
||||
# For accurate stack trace
|
||||
|
|
Loading…
Reference in a new issue