setup-env #1

Merged
noah.knegt merged 28 commits from setup-env into main 2025-02-28 21:49:32 +01:00
10 changed files with 124 additions and 21 deletions
Showing only changes of commit d310ab19d3 - Show all commits

View File

@@ -18,6 +18,7 @@
./IDEs ./IDEs
./git ./git
./zsh
]; ];
nixpkgs = { nixpkgs = {

View File

@@ -0,0 +1,5 @@
{ ... }:
{
imports = [ ./zsh.nix ];
}

7
home-manager/zsh/zsh.nix Normal file
View File

@@ -0,0 +1,7 @@
{ pkgs, inputs, ... }:
{
programs.zsh = {
enable = true;
};
}