Fri Jun 21 02:03:01 PM CEST 2024
This commit is contained in:
parent
b8d914355d
commit
cab316b9e1
|
@ -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)";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue