Fri Jun 21 02:03:01 PM CEST 2024

This commit is contained in:
Thomas Avé 2024-06-21 14:03:01 +02:00
parent b8d914355d
commit cab316b9e1
1 changed files with 18 additions and 0 deletions

18
home/Docker.nix Normal file
View File

@ -0,0 +1,18 @@
{ inputs, config, pkgs, ... }:
{
home.username = "root";
home.homeDirectory = "/home/root";
nix = {
package = pkgs.nix;
};
imports = [
(import ./utils/common.nix { inherit inputs config pkgs; })
];
home.sessionVariables = {
NIX_PATH = "${config.xdg.stateHome}/nix/profiles/channels/";
LANG = "en_US.UTF-8";
XDG_RUNTIME_DIR = "/run/user/$(id -u)";
};
}