You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.3 KiB
60 lines
1.3 KiB
{ config, pkgs, nix-colors, username, ... }:
|
|
|
|
{
|
|
imports = [
|
|
nix-colors.homeManagerModules.default
|
|
./modules/dunst.nix
|
|
./modules/waybar.nix
|
|
./modules/ranger.nix
|
|
./hyperland
|
|
];
|
|
colorScheme = nix-colors.colorSchemes.gruvbox-material-dark-hard;
|
|
|
|
# TODO please change the username & home directory to your own
|
|
home.username = "${username}";
|
|
home.homeDirectory = "/home/${username}";
|
|
|
|
|
|
# Packages that should be installed to the user profile.
|
|
home.packages = with pkgs; [
|
|
kitty
|
|
eza
|
|
git
|
|
git-lfs
|
|
obsidian
|
|
jq
|
|
skypeforlinux
|
|
direnv
|
|
|
|
slack
|
|
jetbrains-toolbox
|
|
nextcloud-client
|
|
|
|
];
|
|
|
|
|
|
programs.ssh = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
Host *
|
|
IdentityAgent "~/.1password/agent.sock"
|
|
'';
|
|
};
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
lfs.enable = true;
|
|
};
|
|
# 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;
|
|
} |