This commit is contained in:
2025-08-14 12:33:13 +00:00
parent a397f5f13b
commit 13313035d5
47 changed files with 48 additions and 50 deletions

View File

@@ -1,5 +1,5 @@
{
imports = [
../../modules/platform/darwin
../../modules/darwin
];
}

View File

@@ -5,7 +5,7 @@
...
}: {
imports = [
../../../modules/platform/nixos
../../../modules/nixos
];
boot = {

View File

@@ -6,7 +6,7 @@
allowUnfree = true;
};
overlays = let
path = ../../overlays;
path = ../overlays;
in
with builtins;
map (n: import (path + ("/" + n))) (

View File

@@ -8,9 +8,9 @@
...
}: {
imports = [
../../core
../../networking/tailscale.nix
../../services/syncthing.nix
../core.nix
../tailscale.nix
../syncthing.nix
./dock
./homebrew.nix
./system.nix
@@ -49,13 +49,13 @@
_module.args = {inherit user;};
imports = [
nixvim.homeModules.nixvim
../../home-manager/base
../../home-manager/darwin
../home-manager
../home-manager/darwin
];
fonts.fontconfig.enable = true;
home = {
packages =
pkgs.callPackage ../../packages {}
pkgs.callPackage ../packages.nix {}
++ pkgs.callPackage ./packages.nix {};
stateVersion = constants.stateVersions.homeManager;
};

View File

@@ -1,24 +0,0 @@
{
imports = [
./shell/aliases.nix
./shell/fish.nix
./shell/starship.nix
./shell/zsh.nix
./tools/atuin.nix
./tools/bat.nix
./tools/eza.nix
./tools/git.nix
./tools/lazygit.nix
./tools/mise.nix
./tools/ssh.nix
./tools/zellij.nix
./tools/zoxide.nix
./editors/neovim
];
programs.home-manager.enable = true;
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
}

View File

@@ -1,6 +0,0 @@
{
home.shellAliases = {
v = "nvim";
lg = "lazygit";
};
}

View File

@@ -1,5 +1,5 @@
{
imports = [
./terminal/ghostty.nix
./ghostty.nix
];
}

View File

@@ -0,0 +1,28 @@
{
imports = [
./fish.nix
./starship.nix
./zsh.nix
./atuin.nix
./bat.nix
./eza.nix
./git.nix
./lazygit.nix
./mise.nix
./ssh.nix
./zellij.nix
./zoxide.nix
./neovim
];
programs.home-manager.enable = true;
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
home.shellAliases = {
v = "nvim";
lg = "lazygit";
};
}

View File

@@ -1,5 +1,5 @@
{
imports = [
./terminal/zellij.nix
./zellij.nix
];
}

View File

@@ -7,12 +7,12 @@
...
}: {
imports = [
../../core
../../networking/firewall.nix
../../networking/ssh.nix
../../networking/tailscale.nix
../../services/adguard.nix
../../services/syncthing.nix
../core.nix
./firewall.nix
./ssh.nix
./adguard.nix
../tailscale.nix
../syncthing.nix
sops-nix.nixosModules.sops
];
@@ -57,12 +57,12 @@
_module.args = {inherit user;};
imports = [
nixvim.homeModules.nixvim
../../home-manager/base
../../home-manager/nixos
../home-manager
../home-manager/nixos
];
home = {
packages =
pkgs.callPackage ../../packages {}
pkgs.callPackage ../packages.nix {}
++ pkgs.callPackage ./packages.nix {};
stateVersion = constants.stateVersions.homeManager;
};