moved home.nix into default.nix
This commit is contained in:
@@ -45,7 +45,7 @@
|
|||||||
homeManagerModules.default = { ... }: {
|
homeManagerModules.default = { ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
./nixosModules/options.nix
|
./nixosModules/options.nix
|
||||||
./home.nix
|
./homeManagerModules
|
||||||
inputs._1password-shell-plugins.hmModules.default
|
inputs._1password-shell-plugins.hmModules.default
|
||||||
];
|
];
|
||||||
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
||||||
|
|||||||
@@ -1,14 +1,16 @@
|
|||||||
{ config, pkgs, lib, inputs, ... }:
|
{ ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
# These modules are each responsible for responding appropriately to the options
|
||||||
imports = [
|
imports = [
|
||||||
./homeManagerModules/git.nix
|
./docker.nix
|
||||||
./homeManagerModules/ghostty.nix
|
./ghostty.nix
|
||||||
./homeManagerModules/shell.nix
|
./git.nix
|
||||||
./homeManagerModules/ssh.nix
|
./shell.nix
|
||||||
./homeManagerModules/docker.nix
|
./ssh.nix
|
||||||
./homeManagerModules/vscode.nix
|
./steam.nix
|
||||||
|
./vscode.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Home Manager needs a bit of information about you and the paths it should
|
# Home Manager needs a bit of information about you and the paths it should
|
||||||
# manage.
|
# manage.
|
||||||
home.username = config.user;
|
home.username = config.user;
|
||||||
Reference in New Issue
Block a user