nixcfg/home/aly/default.nix
2024-02-29 17:06:55 -05:00

71 lines
3 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ config, pkgs, ... }:
{
# TODO please change the username & home directory to your own
home.username = "aly";
home.homeDirectory = "/home/aly";
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
# here is some command line tools I use frequently
# feel free to add your own or remove some of them
neofetch
nnn # terminal file manager
# utils
eza # A modern replacement for ls
fzf # A command-line fuzzy finder
];
# basic configuration of git, please change to your own
programs.git = {
enable = true;
userName = "Aly Raffauf";
userEmail = "alychace@gmail.com";
};
programs.bash = {
enable = true;
enableCompletion = true;
};
dconf = {
enable = true;
settings."org/gnome/desktop/interface".clock-format = "12h";
settings."org/gnome/mutter".edge-tiling = true;
settings."org/gnome/mutter".dynamic-workspaces = true;
settings."org/gnome/desktop/interface".enable-hot-corners = true;
settings."org/gnome/desktop/datetime".automatic-timezone = true;
settings."org/gtk/settings/file-chooser".sort-directories-first = true;
settings."org/gtk/gtk4/settings/file-chooser".sort-directories-first = true;
settings."org/gnome/shell/extensions/blur-my-shell/panel".customize = true;
settings."org/gnome/shell/extensions/blur-my-shell/panel".override-background-dynamically = "true";
settings."org/gnome/shell/extensions/blur-my-shell/panel".unblur-in-overview = true;
settings."org/gnome/shell/extensions/blur-my-shell/overview".style-components = 3;
settings."org/gnome/system/location".enabled = true;
settings."org/gnome/desktop/wm/preferences".auto-raise = true;
settings."org/gnome/desktop/search-providers".enabled = "['org.gnome.Calendar.desktop', 'org.gnome.Weather.desktop', 'org.gnome.Contacts.desktop', 'org.gnome.Calculator.desktop', 'org.gnome.Characters.desktop', 'org.gnome.clocks.desktop']";
settings."org/gnome/shell".enabled-extensions = [
"appindicatorsupport@rgcjonas.gmail.com"
"gsconnect@andyholmes.github.io"
"tailscale-status@maxgallup.github.com"
"nightthemeswitcher@romainvigier.fr"
"tiling-assistant@leleat-on-github"
"blur-my-shell@aunetx"
"noannoyance-fork@vrba.dev"
];
};
# This value determines the home Manager release that your
# configuration is compatible with. This helps avoid breakage
# when a new home Manager release introduces backwards
# incompatible changes.
#
# You can update home Manager without changing this value. See
# the home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "23.11";
# Let home Manager install and manage itself.
programs.home-manager.enable = true;
}