move things out of default.nix

This commit is contained in:
Reid 2025-12-17 00:36:23 -08:00
parent 6ab050e11f
commit 6d32157751
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD
4 changed files with 60 additions and 52 deletions

View file

@ -1,4 +1,4 @@
{ ... }:
{ pkgs, ... }:
{
config = {
hm.xdg.enable = true;
@ -19,5 +19,9 @@
screenshots = "${pictures}/screenshots";
};
};
environment.systemPackages = with pkgs; [
xdg-utils
];
};
}