Add heaven (my server)

This commit is contained in:
Hadi
2024-06-07 21:21:03 +02:00
parent d917ac9f6a
commit 17f93ea60b
25 changed files with 238 additions and 17 deletions

41
home/server.nix Normal file
View File

@@ -0,0 +1,41 @@
{ pkgs, ... }:
let variable = import ../variables.nix;
in {
imports = [
./themes/server.nix
./system/server.nix
./scripts/server.nix
./apps/server.nix
];
home = {
username = variable.username;
homeDirectory = variable.homeDirectory;
packages = with pkgs; [
btop
# Dev
go
cargo
nodejs
python3
jq
# Utils
sops # Secrets
age # Secrets
fd
bc
gcc
zip
unzip
wget
curl
];
stateVersion = variable.server.stateVersion;
};
programs.home-manager.enable = true;
}