Initial commit
Some checks failed
CI / check (push) Has been cancelled
CI / ida (push) Has been cancelled
CI / cpt (push) Has been cancelled
CI / build-nixos (ena) (push) Has been cancelled
CI / build-nixos (hako) (push) Has been cancelled
CI / build-nixos (kazusa) (push) Has been cancelled
CI / build-nixos (mizuki) (push) Has been cancelled

This commit is contained in:
암냥 2026-07-03 16:53:49 +09:00
commit 70284509f3
No known key found for this signature in database
144 changed files with 7061 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ pkgs, ... }:
{
programs.git = {
enable = true;
# 기본 사용자 설정
# userName = "imnyang";
# userEmail = "imnyang@pm.me";
settings = {
user = {
signingkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOHP3Z+AYrRh9f8TYyqChKfeyNm3lOe0F75AwRHTTaxD";
name = "imnyang";
email = "imnyang@pm.me";
};
# gpg = {
# format = "ssh";
# "ssh".program = "/Applications/1Password.app/Contents/MacOS/op-ssh-sign";
# };
# commit.gpgsign = true;
init.defaultBranch = "main";
pull.rebase = false;
includeIf."gitdir:~/workspaces/git/adofai.gg/" = {
path = builtins.toFile "gitconfig-adofaigg" ''
[user]
email = imnyang@adofai.gg
'';
};
};
};
}

View file

@ -0,0 +1,64 @@
{
programs.fish = {
enable = true;
shellAliases = {
".." = "cd ..";
"..." = "cd ../..";
ls = "eza --icons=always";
ll = "eza --icons=always -l";
la = "eza --icons=always -a";
lla = "eza --icons=always -la";
# nix-darwin 관련
rebuild = "sudo darwin-rebuild switch --flake .#kanade";
update = "nix flake update";
clean = "nix-collect-garbage -d";
};
interactiveShellInit = ''
set -g fish_greeting ""
set -g fish_color_command blue
set -g fish_color_error red
set -g fish_color_param cyan
set -gx ANDROID_HOME "$HOME/Library/Android/sdk"
if test -d "$ANDROID_HOME/ndk"
set -l ndk_versions "$ANDROID_HOME"/ndk/*
if test (count $ndk_versions) -gt 0
set -gx NDK_HOME $ndk_versions[-1]
end
end
set -gx SSH_AUTH_SOCK /Users/imnyang/.ssh/proton-pass-agent.sock
'';
};
programs.starship = {
enable = true;
settings = {
format = "🎼 $directory:$character";
add_newline = false;
# username = {
# style_user = "purple";
# style_root = "purple";
# format = "[$user]($style)";
# show_always = true;
# };
# hostname = {
# style = "green";
# format = "[$hostname]($style)";
# ssh_only = false;
# };
directory = {
style = "fg:#fbb6c4";
format = "[$path]($style)";
truncation_length = 3;
};
character = {
success_symbol = " 💕";
error_symbol = " ";
};
};
};
}

View file

@ -0,0 +1,27 @@
{
config,
pkgs,
inputs,
...
}:
{
xdg.enable = true;
home.stateVersion = "25.05";
home.username = "imnyang";
home.homeDirectory = "/Users/imnyang";
home.packages = import ./packages.nix { inherit pkgs inputs; };
home.sessionVariables = {
EDITOR = "nvim";
VISUAL = "nvim";
};
imports = [
"${inputs.self}/modules/home/neovim.nix"
"${inputs.self}/modules/home/ghostty.nix"
"${inputs.self}/modules/home/zed.nix"
./config/git.nix
./config/shell.nix
];
}

View file

@ -0,0 +1,55 @@
{ pkgs, inputs, ... }:
let
dr = import ../../../../modules/nixos/features/packages/dr.nix { inherit pkgs; };
in
with pkgs;
[
# Language runtimes and package managers
nodejs
pnpm
yarn
bun
python3
rustup
go
# Editors and database tools
neovide
jetbrains.datagrip
jetbrains.idea
# CLI utilities
ripgrep
fd
bat
fzf
jq
eza
fastfetch
btop
# Source control
gh
lazygit
# Browsers
google-chrome
# Development applications
postman
scrcpy
# Virtualisation
utm
# Media
iina
# Gaming
prismlauncher
# Nix workflows
dr
inputs.muvel.packages.${pkgs.stdenv.hostPlatform.system}.muvel
]