1
0
mirror of https://github.com/balkian/dotfiles.git synced 2024-11-05 05:01:43 +00:00
dotfiles/homemanager/.config/home-manager/home.nix

82 lines
1.8 KiB
Nix
Raw Normal View History

2023-11-10 15:16:24 +00:00
{ config, pkgs, nixgl, ... }:
let nixgl = import <nixgl> {};
in
{
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = "j";
home.homeDirectory = "/home/j";
2024-01-23 15:25:59 +00:00
nixpkgs = {
config = {
allowUnfree = true;
allowUnfreePredicate = (_: true);
};
};
2023-11-10 15:16:24 +00:00
# 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.05";
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
home.packages = [
pkgs.htop
2024-01-23 15:25:59 +00:00
pkgs.zoom-us
2023-11-10 15:16:24 +00:00
pkgs.fortune
pkgs.tmux
pkgs.git
2024-01-23 15:25:59 +00:00
pkgs.git-lfs
pkgs.hugo
2023-11-10 15:16:24 +00:00
pkgs.fish
2024-01-23 15:25:59 +00:00
pkgs.fd
2023-11-10 15:16:24 +00:00
pkgs.helix
pkgs.starship
pkgs.ripgrep
pkgs.eza
2023-11-13 09:28:59 +00:00
pkgs.ansible
2023-11-10 15:16:24 +00:00
pkgs.ranger
2023-11-13 09:28:59 +00:00
pkgs.sshpass
2024-01-23 15:25:59 +00:00
pkgs.jq
pkgs.bat
pkgs.davfs2
pkgs.pandoc
pkgs.rustup
#pkgs.texlive
# pkgs.texlive.combine {
# inherit (texlive) xcolor
# }
pkgs.wl-clipboard
2023-11-10 15:16:24 +00:00
nixgl.auto.nixGLDefault
2024-01-23 15:25:59 +00:00
#(pkgs.python311.withPackages (p: with p; [
#jupyterlab
#matplotlib
#pandas
#openpyxl
#]))
2023-11-10 15:16:24 +00:00
pkgs.alacritty
2024-01-23 15:25:59 +00:00
pkgs.wezterm
pkgs.kitty
pkgs.zellij
(pkgs.nerdfonts.override { fonts = [ "Iosevka" "IosevkaTerm" "Hack" "CascadiaCode" "FiraCode" "DejaVuSansMono" ]; })
2023-11-10 15:16:24 +00:00
];
fonts.fontconfig.enable = true;
programs.neovim = {
enable = true;
vimAlias = true;
plugins = with pkgs.vimPlugins; [
auto-pairs
fzf-vim
lightline-vim
];
};
2024-01-23 15:25:59 +00:00
services.owncloud-client.enable = true;
2023-11-10 15:16:24 +00:00
}