Alexandre 63416a42d6
Some checks failed
Check config / build (push) Failing after 10m6s
Fixed hyprland path and added a new alias
2026-05-30 22:51:52 +02:00

87 lines
1.9 KiB
Nix

{ config, pkgs, inputs, ... }:
let
modules = import ../../modules;
in
{
imports = [
inputs.spicetify-nix.homeManagerModules.spicetify
modules.hm.spicetify
modules.hm.zed
modules.hm.zen
modules.hm.nvim
modules.hm.shell
];
programs = {
# Git config
git = {
enable = true;
settings = {
user = {
email = "mateialex@outlook.fr";
name = "Alexandre";
};
};
};
};
# Common Packages
home = {
packages = with pkgs; [
# CLI
hello
yt-dlp
syncthing # ToDo: configure it ig
spicetify-cli
# Dev CLI
doxygen
autoconf
pkg-config
swig
pandoc
# GUI apps
vscode
vesktop
obsidian
beeper
bitwarden-desktop
jellyfin-desktop
kitty # Terminal emulator but needs a GUI
# Go
go # The main compiler
hugo
# JavaScript
#nodejs_24 # The main interpreter
pnpm # To replace npm
nodejs_22
# C/C++
clang-tools # The main compiler
vcpkg # The package manager
# Python
python312 # The main interpreter
#pip # The package manager
];
shellAliases = {
drs = "time sudo darwin-rebuild switch --flake ~/Developer/nix/NixOSDots#macOS";
nrs = "time sudo nixos-rebuild switch --flake ~/Developer/nix/NixOSDots#nixos";
frs = "time sudo nixos-rebuild switch --flake ~/Developer/nix/NixOSDots#framework";
lrs = "time sudo nixos-rebuild switch --flake ~/Developer/nix/NixOSDots#light";
lars = "time sudo nixos-rebuild switch --flake ~/Developer/nix/NixOSDots#laptop";
cdd = "cd ~/Developer/nix/NixOSDots";
ncg = "time nix-collect-garbage -d";
nfc = "time nix flake check ~/Developer/nix/NixOSDots";
nfu = "time nix flake update --flake ~/Developer/nix/NixOSDots";
};
};
}