Dev #2

Merged
poslop merged 31 commits from dev into master 2026-07-23 12:48:53 -05:00
3 changed files with 24 additions and 10 deletions
Showing only changes of commit bb19efac38 - Show all commits
+2 -1
View File
@@ -1,6 +1,7 @@
{
imports = [
./user.nix
./dev.nix
./system.nix
./utils.nix
];
}
@@ -1,21 +1,22 @@
{ pkgs, username, ... }:
{
hjem.users.${username}.packages = with pkgs; [
btop
clang
curl
# general
neovim
git
# c++
clang
lld
llvmPackages.bintools
# lua
stylua
lua-language-server
neofetch
neovim
# nix
nixd
nixfmt
statix
tlrc
unzip
wget
wl-clipboard
];
}
+12
View File
@@ -0,0 +1,12 @@
{ pkgs, username, ... }:
{
hjem.users.${username}.packages = with pkgs; [
btop
curl
neofetch
tlrc
unzip
wget
wl-clipboard
];
}