mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-04 20:02:10 +02:00
88
hosts/desktop/home.nix
Normal file
88
hosts/desktop/home.nix
Normal file
@@ -0,0 +1,88 @@
|
||||
{ pkgs, config, ... }: {
|
||||
|
||||
imports = [
|
||||
./variables.nix
|
||||
|
||||
# Programs
|
||||
../../home/programs/kitty
|
||||
../../home/programs/nvim
|
||||
../../home/programs/qutebrowser
|
||||
../../home/programs/shell
|
||||
../../home/programs/fetch
|
||||
../../home/programs/git
|
||||
../../home/programs/spicetify
|
||||
../../home/programs/nextcloud
|
||||
../../home/programs/yazi
|
||||
../../home/programs/markdown
|
||||
../../home/programs/thunar
|
||||
../../home/programs/lazygit
|
||||
../../home/programs/nh
|
||||
|
||||
# Scripts
|
||||
../../home/scripts # All scripts
|
||||
|
||||
# System (Desktop environment like stuff)
|
||||
../../home/system/hyprland
|
||||
../../home/system/hypridle
|
||||
../../home/system/hyprlock
|
||||
../../home/system/hyprpanel
|
||||
../../home/system/hyprpaper
|
||||
../../home/system/gtk
|
||||
../../home/system/wofi
|
||||
../../home/system/zathura
|
||||
../../home/system/mime
|
||||
../../home/system/udiskie
|
||||
../../home/system/clipman
|
||||
];
|
||||
|
||||
home = {
|
||||
inherit (config.var) username;
|
||||
homeDirectory = "/home/" + config.var.username;
|
||||
|
||||
packages = with pkgs; [
|
||||
# Apps
|
||||
discord # Chat
|
||||
bitwarden # Password manager
|
||||
vlc # Video player
|
||||
blanket # White-noise app
|
||||
|
||||
# Dev
|
||||
go
|
||||
nodejs
|
||||
python3
|
||||
jq
|
||||
figlet
|
||||
just
|
||||
|
||||
# Utils
|
||||
zip
|
||||
unzip
|
||||
optipng
|
||||
pfetch
|
||||
pandoc
|
||||
btop
|
||||
|
||||
# Just cool
|
||||
peaclock
|
||||
cbonsai
|
||||
pipes
|
||||
cmatrix
|
||||
cava
|
||||
|
||||
# Backup
|
||||
vscode
|
||||
firefox
|
||||
neovide
|
||||
|
||||
pnpm
|
||||
];
|
||||
|
||||
# Import my profile picture, used by the hyprpanel dashboard
|
||||
file.".profile_picture.png" = { source = ./profile_picture.png; };
|
||||
|
||||
# Don't touch this
|
||||
stateVersion = "24.05";
|
||||
};
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
}
|
||||
Reference in New Issue
Block a user