moved home manager modules

This commit is contained in:
John Lancaster
2026-03-10 22:39:30 -05:00
parent 6c01156ffe
commit 5ee73c1f44
20 changed files with 31 additions and 31 deletions

View File

@@ -1,8 +1,8 @@
{ inputs, pkgs, ... }:
{
flake.homeModules.base = { pkgs, ... }:
flake.modules.homeManager.base = { pkgs, ... }:
{
imports = with inputs.self.homeModules; [
imports = with inputs.self.modules.homeManager; [
rebuild
git
shell-tools

View File

@@ -1,9 +1,9 @@
# This module is for programs with GUIs that run in a desktop environment
{ inputs, ... }:
{
flake.homeModules.desktop =
flake.modules.homeManager.desktop =
{
imports = with inputs.self.homeModules; [
imports = with inputs.self.modules.homeManager; [
onepassword
ghostty
sublime

View File

@@ -1,14 +1,14 @@
# This module provides all the shell options
{ inputs, lib, ... }:
{
flake.homeModules.shell-tools = { config, pkgs, ... }: {
flake.modules.homeManager.shell-tools = { config, pkgs, ... }: {
options.shell.program = lib.mkOption {
type = lib.types.enum [ "bash" "zsh" ];
default = "zsh";
description = "Which interactive shell configuration to enable.";
};
imports = with inputs.self.homeModules; [
imports = with inputs.self.modules.homeManager; [
bash
zsh