From 94bc8bf2c928d4796c2978e72e021d6ca3ff5fcb Mon Sep 17 00:00:00 2001 From: Sergei Poljanski Date: Mon, 15 Dec 2025 17:46:10 +0200 Subject: [PATCH] Update: 2025-12-15_17:46 --- README.md | 4 ++++ modules/boot.nix | 12 ++++++------ modules/shell.nix | 5 ++++- modules/users.nix | 8 ++++++++ 4 files changed, 22 insertions(+), 7 deletions(-) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..2c23285 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# NixOS + +## TODO +- [ ] Add secret manager (sops-nix) diff --git a/modules/boot.nix b/modules/boot.nix index 1adccd6..7161c65 100644 --- a/modules/boot.nix +++ b/modules/boot.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 diff --git a/modules/shell.nix b/modules/shell.nix index a950056..8ae5f9b 100644 --- a/modules/shell.nix +++ b/modules/shell.nix @@ -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 diff --git a/modules/users.nix b/modules/users.nix index 422acfa..52e80f1 100644 --- a/modules/users.nix +++ b/modules/users.nix @@ -19,6 +19,14 @@ discord-ptb # Code zed-editor + # Media + qbittorrent + mpv + # Games + runelite + # bolt-launcher + # Utils + cameractrls ]; }; }