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,
|
zls,
|
||||||
...
|
...
|
||||||
}: let
|
}: 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 {
|
in {
|
||||||
home = {
|
home = {
|
||||||
stateVersion = "23.05"; # Please read the comment before changing.
|
stateVersion = "23.05"; # Please read the comment before changing.
|
||||||
|
|
||||||
packages = with pkgs; let
|
packages = with pkgs; let
|
||||||
shared-packages = import ../shared/packages.nix {inherit pkgs;};
|
shared-packages = import ../../modules/shared/packages.nix {inherit pkgs;};
|
||||||
in
|
in
|
||||||
shared-packages
|
shared-packages
|
||||||
++ [
|
++ [
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
userSettings,
|
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 = {
|
home = {
|
||||||
inherit (userSettings) username;
|
inherit (userSettings) username;
|
||||||
|
@ -14,7 +14,7 @@
|
||||||
# shell = pkgs.fish;
|
# shell = pkgs.fish;
|
||||||
stateVersion = "23.05"; # Please read the comment before changing.
|
stateVersion = "23.05"; # Please read the comment before changing.
|
||||||
|
|
||||||
packages = pkgs.callPackage ../shared/packages.nix {};
|
packages = pkgs.callPackage ../../modules/shared/packages.nix {};
|
||||||
|
|
||||||
sessionPath = [
|
sessionPath = [
|
||||||
"$HOME/.emacs.d/bin"
|
"$HOME/.emacs.d/bin"
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
{
|
|
||||||
config,
|
|
||||||
pkgs,
|
|
||||||
lib,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in a new issue