Fixed Hyprland config errors for installation

This commit is contained in:
2025-11-19 20:52:12 +01:00
parent 61adc10c49
commit 72acec33da
8 changed files with 38 additions and 48 deletions

View File

@@ -2,8 +2,8 @@
{
# Home Manager needs a bit of information about you and the paths it should manage
home.username = "yourusername";
home.homeDirectory = "/home/yourusername";
home.username = "crib";
home.homeDirectory = "/home/crib";
# Packages to install for this user
home.packages = with pkgs; [
@@ -34,11 +34,15 @@
./waybar.nix
];
# Git configuration
# Git configuration (updated API)
programs.git = {
enable = true;
userName = "crib";
userEmail = "haugseth.martin@gmail.com";
settings = {
user = {
name = "Your Name";
email = "your.email@example.com";
};
};
};
# ZSH configuration
@@ -63,10 +67,10 @@
};
};
# Kitty terminal configuration
# Kitty terminal configuration (updated API)
programs.kitty = {
enable = true;
theme = "Tokyo Night";
themeFile = "tokyo_night_night";
font.name = "JetBrainsMono Nerd Font";
font.size = 12;
settings = {