10 lines
187 B
Nix
10 lines
187 B
Nix
{ user, pkgs, ... }:
|
|
|
|
let
|
|
home = builtins.getEnv "HOME";
|
|
xdg_configHome = "${home}/.config";
|
|
xdg_dataHome = "${home}/.local/share";
|
|
xdg_stateHome = "${home}/.local/state";
|
|
in
|
|
{ }
|