# **************************************************************************** # # # # ::: :::::::: # # home.nix :+: :+: :+: # # +:+ +:+ +:+ # # By: tomoron +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2024/10/17 18:15:38 by tomoron #+# #+# # # Updated: 2024/10/25 21:48:22 by tomoron ### ########.fr # # # # **************************************************************************** # { config, lib, pkgs, username,homeDir, ... }: { imports = [ modules/git.nix modules/picom.nix modules/alacritty.nix modules/vim.nix modules/firefox.nix modules/hyprland.nix modules/waybar.nix ]; home.username = "${username}"; home.homeDirectory = "${homeDir}"; home.stateVersion = "24.05"; home.packages = with pkgs;[ polybarFull sxhkd nitrogen nerdfonts rofi neovim ripgrep activate-linux bspwm dunst numlockx unison discord google-chrome wofi brightnessctl playerctl swaybg hyprlock ]; home.file = { ".config/bspwm/bspwmrc".source = dotfiles/config/bspwm/bspwmrc; # ".config/hypr/hyprland.conf".source = dotfiles/config/hypr/hyprland.conf; ".config/hypr/hyprlock.conf".source = dotfiles/config/hypr/hyprlock.conf; # ".config/waybar/config".source = dotfiles/config/waybar/config; # ".config/waybar/style.css".source = dotfiles/config/waybar/style.css; ".config/sxhkd".source = lib.mkDefault dotfiles/config/sxhkd; ".config/polybar".source = dotfiles/config/polybar; ".config/nitrogen/wallpaper.png".source = lib.mkDefault dotfiles/config/nitrogen/wallpaper.png; ".xinitrc".source = dotfiles/xinitrc; ".bashrc".source = dotfiles/bashrc; ".local/share/rofi/themes".source = "${builtins.fetchGit { url = "https://github.com/newmanls/rofi-themes-collection"; rev = "c8239a45edced3502894e1716a8b661fdea8f1c9"; ref = "master"; }}/themes"; ".local/bin/desk_sync".source = dotfiles/local/bin/desk_sync; ".local/share/icons/bibata-modern-classic".source = dotfiles/local/share/icons/bibata-modern-classic; }; programs.home-manager.enable = true; }