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 ./packages
./timezone.nix ./timezone.nix
./nix.nix ./nix.nix
./pipewire.nix
./program.nix ./program.nix
./user.nix ./user.nix
./ssh.nix ./ssh.nix
+2 -1
View File
@@ -1,6 +1,7 @@
{ {
imports = [ imports = [
./user.nix ./dev.nix
./system.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; [ hjem.users.${username}.packages = with pkgs; [
btop btop
clang
curl curl
git
lld
llvmPackages.bintools
lua-language-server
neofetch neofetch
neovim
nixd
nixfmt
statix
tlrc tlrc
unzip unzip
wget wget
+8 -1
View File
@@ -11,11 +11,18 @@ zstyle :compinstall filename '/home/poslop/.zshrc'
autoload -Uz compinit autoload -Uz compinit
compinit compinit
alias ga='git add'
alias gc='git commit' alias gc='git commit'
alias gp='git push' alias gp='git push'
alias gs='git status' alias gs='git status'
ga() {
if [[ -z "$1" ]]; then
git add -u
else
git add "$1"
fi
}
rerice() { rerice() {
local flake_dir="/etc/rice-flakes" local flake_dir="/etc/rice-flakes"
host="${1:-$(hostname -s)}" host="${1:-$(hostname -s)}"
+1
View File
@@ -1,6 +1,7 @@
{ {
imports = [ imports = [
./hyprland ./hyprland
./pipewire.nix
./packages.nix ./packages.nix
./fonts.nix ./fonts.nix
]; ];