move directory structure around
This commit is contained in:
parent
c2d01f86b0
commit
23747c52ec
5 changed files with 4 additions and 12 deletions
|
@ -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
|
||||
++ [
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
|
||||
}
|
Loading…
Reference in a new issue