Condensed home.nix into many more modules!

This commit is contained in:
Emmet 2023-06-10 23:04:03 -05:00
parent 3fd5341fbe
commit 4a44c06a43
14 changed files with 258 additions and 155 deletions

View file

@ -0,0 +1,8 @@
{ config, lib, pkgs, ... }:
{
home.packages = [ pkgs.flatpak ];
home.sessionVariables = {
XDG_DATA_DIRS = "$XDG_DATA_DIRS:/usr/share:/var/lib/flatpak/exports/share:$HOME/.local/share/flatpak/exports/share"; # lets flatpak work
};
}