[home] split develop.nix out of home.nix
This commit is contained in:
@@ -9,6 +9,7 @@
|
||||
imports = [
|
||||
(import ./modules/shell.nix)
|
||||
(import ./modules/desktop.nix)
|
||||
(import ./modules/develop.nix)
|
||||
];
|
||||
|
||||
home.packages = with pkgs;[
|
||||
@@ -18,8 +19,6 @@
|
||||
lsof # list open files
|
||||
];
|
||||
programs.nix-index.enable = true;
|
||||
programs.vscode.enable = true;
|
||||
|
||||
home.stateVersion = "23.11";
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
clang-tools
|
||||
python312
|
||||
python312Packages.ipython
|
||||
];
|
||||
programs.fish.shellAliases = {
|
||||
"ipy" = "ipython --no-confirm-exit";
|
||||
};
|
||||
|
||||
programs.vscode.enable = true;
|
||||
}
|
||||
Reference in New Issue
Block a user