mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 11:12:09 +02:00
76 lines
1.5 KiB
Nix
76 lines
1.5 KiB
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
imports = [
|
|
# Programs
|
|
../../home/programs/brave
|
|
../../home/programs/ghostty
|
|
../../home/programs/nvf
|
|
../../home/programs/shell
|
|
../../home/programs/fetch
|
|
../../home/programs/git
|
|
../../home/programs/git/lazygit.nix
|
|
../../home/programs/thunar
|
|
../../home/programs/nixy
|
|
../../home/programs/zathura
|
|
../../home/programs/nightshift
|
|
../../home/programs/group/cybersecurity.nix
|
|
|
|
# System (Desktop environment like stuff)
|
|
../../home/system/hyprland
|
|
../../home/system/caelestia-shell
|
|
../../home/system/hyprpaper
|
|
../../home/system/mime
|
|
../../home/system/udiskie
|
|
|
|
./variables.nix # Mostly user-specific configuration
|
|
./secrets
|
|
];
|
|
|
|
home = {
|
|
packages = with pkgs; [
|
|
# Apps
|
|
vlc # Video player
|
|
blanket # White-noise app
|
|
obsidian # Note taking app
|
|
textpieces # Manipulate texts
|
|
resources # Ressource monitor
|
|
gnome-clocks # Clocks app
|
|
gnome-text-editor # Basic graphic text editor
|
|
mpv # Video player
|
|
|
|
# Dev
|
|
go
|
|
bun
|
|
docker
|
|
nodejs
|
|
python3
|
|
jq
|
|
just
|
|
air
|
|
duckdb
|
|
|
|
# Just cool
|
|
peaclock
|
|
cbonsai
|
|
pipes
|
|
cmatrix
|
|
fastfetch
|
|
|
|
# Backup
|
|
vscode
|
|
vivaldi
|
|
];
|
|
|
|
inherit (config.var) username;
|
|
homeDirectory = "/home/" + config.var.username;
|
|
|
|
# Don't touch this
|
|
stateVersion = "24.05";
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|