8 lines
149 B
Nix
8 lines
149 B
Nix
{ config, pkgs, lib, ... }: {
|
|
services.cage = {
|
|
enable = true;
|
|
program = config.defaultApplications.term.cmd;
|
|
user = "balsoft";
|
|
};
|
|
}
|