2024-01-15 09:04:58 +01:00
|
|
|
{ config, pkgs, inputs, username,
|
2024-01-15 20:00:56 +01:00
|
|
|
gitUsername, gitEmail, gtkThemeFromScheme,
|
2024-01-17 09:17:12 +01:00
|
|
|
theme, browser, wallpaperDir, wallpaperGit,
|
|
|
|
flakeDir, ... }:
|
2024-01-09 23:50:24 +01:00
|
|
|
|
|
|
|
{
|
2024-01-13 06:53:25 +01:00
|
|
|
# Home Manager Settings
|
2024-01-12 09:00:46 +01:00
|
|
|
home.username = "${username}";
|
2024-01-13 06:53:25 +01:00
|
|
|
home.homeDirectory = "/home/${username}";
|
2024-01-09 23:50:24 +01:00
|
|
|
home.stateVersion = "23.11";
|
|
|
|
|
2024-01-14 08:27:50 +01:00
|
|
|
# Set The Colorscheme
|
2024-01-15 20:00:56 +01:00
|
|
|
colorScheme = inputs.nix-colors.colorSchemes."${theme}";
|
2024-01-14 08:27:50 +01:00
|
|
|
|
2024-01-17 07:50:43 +01:00
|
|
|
# Import Program Configurations
|
2024-01-14 08:27:50 +01:00
|
|
|
imports = [
|
2024-01-14 08:54:57 +01:00
|
|
|
inputs.nix-colors.homeManagerModules.default
|
2024-01-19 09:55:01 +01:00
|
|
|
inputs.hyprland.homeManagerModules.default
|
|
|
|
|
2024-01-18 08:36:06 +01:00
|
|
|
# Enable &/ Configure Programs
|
2024-01-20 19:58:42 +01:00
|
|
|
./config/home/waybar.nix
|
|
|
|
./config/home/swaync.nix
|
|
|
|
./config/home/swaylock.nix
|
|
|
|
./config/home/starship.nix
|
|
|
|
./config/home/neofetch.nix
|
|
|
|
./config/home/hyprland.nix
|
|
|
|
./config/home/kitty.nix
|
|
|
|
./config/home/rofi.nix
|
|
|
|
./config/home/vim.nix
|
|
|
|
./config/home/bash.nix
|
|
|
|
./config/home/gtk-qt.nix
|
2024-01-18 08:36:06 +01:00
|
|
|
|
|
|
|
# Install Programs & Scripts For User
|
2024-01-20 19:58:42 +01:00
|
|
|
./config/home/packages.nix
|
2024-01-18 08:36:06 +01:00
|
|
|
|
|
|
|
# Place Home Files Like Pictures
|
2024-01-20 19:58:42 +01:00
|
|
|
./config/home/files.nix
|
2024-01-14 08:27:50 +01:00
|
|
|
];
|
|
|
|
|
2024-01-13 06:53:25 +01:00
|
|
|
# Define Settings For Xresources
|
2024-01-09 23:50:24 +01:00
|
|
|
xresources.properties = {
|
|
|
|
"Xcursor.size" = 24;
|
|
|
|
};
|
|
|
|
|
2024-01-13 06:53:25 +01:00
|
|
|
# Install & Configure Git
|
2024-01-09 23:50:24 +01:00
|
|
|
programs.git = {
|
|
|
|
enable = true;
|
2024-01-13 06:53:25 +01:00
|
|
|
userName = "${gitUsername}";
|
|
|
|
userEmail = "${gitEmail}";
|
2024-01-09 23:50:24 +01:00
|
|
|
};
|
|
|
|
|
2024-01-13 06:53:25 +01:00
|
|
|
# Create XDG Dirs
|
2024-01-09 23:50:24 +01:00
|
|
|
xdg = {
|
|
|
|
userDirs = {
|
|
|
|
enable = true;
|
|
|
|
createDirectories = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
}
|