Add dotfiles

This commit is contained in:
muon 2024-03-26 11:39:16 +00:00
commit 39fe550b3e
45 changed files with 4363 additions and 0 deletions

17
modules/core/xdg.nix Normal file
View file

@ -0,0 +1,17 @@
{
config,
pkgs,
lib,
inputs,
...
}: {
environment.variables = with config.users.users.muon; {
WINIT_X11_SCALE_FACTOR="1";
# XDG Base
XDG_CONFIG_HOME="${home}/.config";
XDG_CACHE_HOME="${home}/.cache";
XDG_DATA_HOME="${home}/.local/share";
XDG_STATE_HOME="${home}/.local/state";
};
}