move directory structure around

This commit is contained in:
Natalie 2025-04-21 13:08:15 -07:00
parent c2d01f86b0
commit 23747c52ec
No known key found for this signature in database
GPG key ID: 61F4EAEB0C9C3D5F
5 changed files with 4 additions and 12 deletions

View file

@ -6,13 +6,13 @@
zls,
...
}: let
shared-programs = import ../shared/home-programs.nix {inherit inputs config pkgs lib;};
shared-programs = import ../../modules/shared/homeManagerPrograms.nix {inherit inputs config pkgs lib;};
in {
home = {
stateVersion = "23.05"; # Please read the comment before changing.
packages = with pkgs; let
shared-packages = import ../shared/packages.nix {inherit pkgs;};
shared-packages = import ../../modules/shared/packages.nix {inherit pkgs;};
in
shared-packages
++ [

View file

@ -6,7 +6,7 @@
userSettings,
...
}: {
programs = import ../shared/home-programs.nix {inherit inputs config pkgs lib userSettings;};
programs = import ../../modules/shared/homeManagerPrograms.nix {inherit inputs config pkgs lib userSettings;};
home = {
inherit (userSettings) username;
@ -14,7 +14,7 @@
# shell = pkgs.fish;
stateVersion = "23.05"; # Please read the comment before changing.
packages = pkgs.callPackage ../shared/packages.nix {};
packages = pkgs.callPackage ../../modules/shared/packages.nix {};
sessionPath = [
"$HOME/.emacs.d/bin"

View file

@ -1,8 +0,0 @@
{
config,
pkgs,
lib,
...
}: {
}