This commit is contained in:
sadan 2025-01-31 16:41:00 -05:00
parent d7179ea15b
commit f39bee1c28
No known key found for this signature in database
14 changed files with 156 additions and 36 deletions

View file

@ -1,7 +1,12 @@
{ pkgs, unstable, ... }:
{ pkgs, ... }:
{
imports = [
../unstable.nix
./ide/jb/clion.nix
];
home = {
packages = with pkgs; [
xorg.libX11.man
meson
autoPatchelfHook
cmake

View file

@ -1,10 +1,14 @@
{pkgs, ...}: {
home = {
packages = with pkgs; [
gnumake
binutils
linuxHeaders
man-pages
];
};
{ pkgs, ... }:
{
home = {
packages = with pkgs; [
gnumake
(binutils-unwrapped.override {
withAllTargets = true;
})
libtree
linuxHeaders
man-pages
];
};
}

View file

@ -1,14 +1,21 @@
{pkgs, config, ...}:
let
in {
imports = [
../../pinned.nix
{ pkgs, config, ... }:
let
in
{
imports = [
../../pinned.nix
../../unstable.nix
];
home = {
packages = with pkgs; [
# pinned.vscode
(unstable.vscode.fhsWithPackages (
pkgs: with pkgs; [
powershell
]
))
# codium
zed-editor
];
home = {
packages = with pkgs; [
pinned.vscode
# codium
zed-editor
];
};
};
}

View file

@ -0,0 +1,7 @@
{pkgs, ...}: {
home = {
packages = with pkgs.jetbrains; [
clion
];
};
}

View file

@ -2,5 +2,6 @@
imports = [
./idea.nix
./androidStudio.nix
./clion.nix
];
}

View file

@ -1,7 +1,8 @@
{ pkgs, unstable, ... }: {
{ pkgs, ... }: {
imports = [
../prisma.nix
../../../../customPackages
../unstable.nix
];
home = {
shellAliases = {