packages reformat
This commit is contained in:
6
modules/core/packages/default.nix
Normal file
6
modules/core/packages/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
imports = [
|
||||
./user.nix
|
||||
./system.nix
|
||||
];
|
||||
}
|
||||
7
modules/core/packages/system.nix
Normal file
7
modules/core/packages/system.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
zsh
|
||||
];
|
||||
|
||||
}
|
||||
19
modules/core/packages/user.nix
Normal file
19
modules/core/packages/user.nix
Normal 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
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user