packages reformat

This commit is contained in:
2026-02-20 14:08:18 -06:00
parent 98b245bbf0
commit 99a93326b9
4 changed files with 16 additions and 8 deletions

View File

@@ -0,0 +1,6 @@
{
imports = [
./user.nix
./system.nix
];
}

View File

@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
zsh
];
}

View File

@@ -0,0 +1,19 @@
{ pkgs, username, ... }:
{
hjem.users.${username}.packages = with pkgs; [
clang
lld
nixfmt
llvmPackages.bintools
tlrc
unzip
neovim
btop
curl
git
neofetch
statix
wget
wl-clipboard
];
}