nix/user/home/Root.nix

9 lines
165 B
Nix
Raw Normal View History

2024-04-14 08:32:29 +03:00
{ const, util, style, pkgs, setting, key, secret, ... } @args: {
imports = [
2024-04-14 22:54:20 +03:00
(import ./common (args // {
2024-04-06 03:03:58 +03:00
username = "root";
homeDir = "/root";
2024-04-10 14:50:17 +03:00
}))
];
}