Update: 2025-12-15_17:46
This commit is contained in:
parent
8ce905a427
commit
94bc8bf2c9
4 changed files with 22 additions and 7 deletions
4
README.md
Normal file
4
README.md
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# NixOS
|
||||
|
||||
## TODO
|
||||
- [ ] Add secret manager (sops-nix)
|
||||
|
|
@ -13,18 +13,18 @@
|
|||
# useOSProber = true;
|
||||
# extraConfig = "GRUB_DISABLE_OS_PROBER=false";
|
||||
extraEntries = ''
|
||||
menuentry "Arch Linux (zen)" {
|
||||
search --set=root --fs-uuid 15ae8384-3dfc-4915-9201-66ecfc5f230d
|
||||
linux /@/boot/vmlinuz-linux-zen root=UUID=15ae8384-3dfc-4915-9201-66ecfc5f230d rootflags=subvol=@ rw
|
||||
initrd /@/boot/initramfs-linux-zen.img
|
||||
}
|
||||
|
||||
menuentry "Arch Linux (default)" {
|
||||
search --set=root --fs-uuid 15ae8384-3dfc-4915-9201-66ecfc5f230d
|
||||
linux /@/boot/vmlinuz-linux root=UUID=15ae8384-3dfc-4915-9201-66ecfc5f230d rootflags=subvol=@ rw
|
||||
initrd /@/boot/initramfs-linux.img
|
||||
}
|
||||
|
||||
menuentry "Arch Linux (zen)" {
|
||||
search --set=root --fs-uuid 15ae8384-3dfc-4915-9201-66ecfc5f230d
|
||||
linux /@/boot/vmlinuz-linux-zen root=UUID=15ae8384-3dfc-4915-9201-66ecfc5f230d rootflags=subvol=@ rw
|
||||
initrd /@/boot/initramfs-linux-zen.img
|
||||
}
|
||||
|
||||
menuentry "Arch Linux (lts)" {
|
||||
search --set=root --fs-uuid 15ae8384-3dfc-4915-9201-66ecfc5f230d
|
||||
linux /@/boot/vmlinuz-linux-lts root=UUID=15ae8384-3dfc-4915-9201-66ecfc5f230d rootflags=subvol=@ rw
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
shellAliases = {
|
||||
ls = "ls --color=auto";
|
||||
grep = "grep --color=auto";
|
||||
claude = "$HOME/.claude/local/claude";
|
||||
# claude = "$HOME/.claude/local/claude";
|
||||
};
|
||||
|
||||
# Prompt configuration
|
||||
|
|
@ -26,6 +26,9 @@
|
|||
'';
|
||||
|
||||
interactiveShellInit = ''
|
||||
# Prevent zsh-newuser-install wizard (creates marker file if missing)
|
||||
[[ ! -f ~/.zshrc ]] && touch ~/.zshrc
|
||||
|
||||
# History options
|
||||
setopt SHARE_HISTORY
|
||||
setopt HIST_IGNORE_DUPS
|
||||
|
|
|
|||
|
|
@ -19,6 +19,14 @@
|
|||
discord-ptb
|
||||
# Code
|
||||
zed-editor
|
||||
# Media
|
||||
qbittorrent
|
||||
mpv
|
||||
# Games
|
||||
runelite
|
||||
# bolt-launcher
|
||||
# Utils
|
||||
cameractrls
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue