Compare commits

..

3 Commits

Author SHA1 Message Date
poslop 5cd20d6a35 remove c++ tools 2026-04-24 18:56:23 -05:00
poslop bb19efac38 reorg pkgs 2026-04-24 18:51:05 -05:00
poslop 9e56c695f0 ga alias -> function 2026-04-24 18:35:15 -05:00
7 changed files with 28 additions and 12 deletions
-1
View File
@@ -8,7 +8,6 @@
./packages
./timezone.nix
./nix.nix
./pipewire.nix
./program.nix
./user.nix
./ssh.nix
+2 -1
View File
@@ -1,6 +1,7 @@
{
imports = [
./user.nix
./dev.nix
./system.nix
./utils.nix
];
}
+17
View File
@@ -0,0 +1,17 @@
{ pkgs, username, ... }:
{
hjem.users.${username}.packages = with pkgs; [
# general
neovim
git
# lua
stylua
lua-language-server
# nix
nixd
nixfmt
statix
];
}
@@ -2,17 +2,8 @@
{
hjem.users.${username}.packages = with pkgs; [
btop
clang
curl
git
lld
llvmPackages.bintools
lua-language-server
neofetch
neovim
nixd
nixfmt
statix
tlrc
unzip
wget
+8 -1
View File
@@ -11,11 +11,18 @@ zstyle :compinstall filename '/home/poslop/.zshrc'
autoload -Uz compinit
compinit
alias ga='git add'
alias gc='git commit'
alias gp='git push'
alias gs='git status'
ga() {
if [[ -z "$1" ]]; then
git add -u
else
git add "$1"
fi
}
rerice() {
local flake_dir="/etc/rice-flakes"
host="${1:-$(hostname -s)}"
+1
View File
@@ -1,6 +1,7 @@
{
imports = [
./hyprland
./pipewire.nix
./packages.nix
./fonts.nix
];