diff --git a/flake.nix b/flake.nix index e020701..26724e6 100644 --- a/flake.nix +++ b/flake.nix @@ -45,7 +45,7 @@ homeManagerModules.default = { ... }: { imports = [ ./nixosModules/options.nix - ./home.nix + ./homeManagerModules inputs._1password-shell-plugins.hmModules.default ]; nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ diff --git a/home.nix b/homeManagerModules/default.nix similarity index 90% rename from home.nix rename to homeManagerModules/default.nix index 4c52d90..9da9fe9 100644 --- a/home.nix +++ b/homeManagerModules/default.nix @@ -1,14 +1,16 @@ -{ config, pkgs, lib, inputs, ... }: - +{ ... }: { + # These modules are each responsible for responding appropriately to the options imports = [ - ./homeManagerModules/git.nix - ./homeManagerModules/ghostty.nix - ./homeManagerModules/shell.nix - ./homeManagerModules/ssh.nix - ./homeManagerModules/docker.nix - ./homeManagerModules/vscode.nix + ./docker.nix + ./ghostty.nix + ./git.nix + ./shell.nix + ./ssh.nix + ./steam.nix + ./vscode.nix ]; + # Home Manager needs a bit of information about you and the paths it should # manage. home.username = config.user; @@ -80,4 +82,4 @@ vault = "Private" ''; }; -} +} \ No newline at end of file