zaneyos/home.nix

62 lines
1.4 KiB
Nix
Raw Normal View History

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";
# Set The Colorscheme
2024-01-15 20:00:56 +01:00
colorScheme = inputs.nix-colors.colorSchemes."${theme}";
# Import Program Configurations
imports = [
2024-01-14 08:54:57 +01:00
inputs.nix-colors.homeManagerModules.default
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-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;
}