mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 16:17:46 +00:00
Add dotfiles
This commit is contained in:
commit
39fe550b3e
45 changed files with 4363 additions and 0 deletions
17
modules/core/xdg.nix
Normal file
17
modules/core/xdg.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue