62 lines
1.3 KiB
Nix
62 lines
1.3 KiB
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./user/sh.nix
|
|
./user/tmux.nix
|
|
./user/git.nix
|
|
./user/dev.nix
|
|
./user/nvim.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
nil
|
|
# neovim
|
|
|
|
# (pkgs.nerdfonts.override { fonts = [ "FiraCode" ]; })
|
|
pkgs.nerd-fonts.fira-code
|
|
|
|
# (pkgs.writeShellScriptBin "my-hello" ''
|
|
# echo "Hello, ${config.home.username}!"
|
|
# '')
|
|
];
|
|
|
|
home.file = {
|
|
# ".screenrc".source = dotfiles/screenrc;
|
|
|
|
# ".gradle/gradle.properties".text = ''
|
|
# org.gradle.console=verbose
|
|
# org.gradle.daemon.idletimeout=3600000
|
|
# '';
|
|
};
|
|
|
|
# Home Manager can also manage your environment variables through
|
|
# 'home.sessionVariables'. If you don't want to manage your shell through Home
|
|
# Manager then you have to manually source 'hm-session-vars.sh' located at
|
|
# either
|
|
#
|
|
# ~/.nix-profile/etc/profile.d/hm-session-vars.sh
|
|
#
|
|
# or
|
|
#
|
|
# ~/.local/state/nix/profiles/profile/etc/profile.d/hm-session-vars.sh
|
|
#
|
|
# or
|
|
#
|
|
# /etc/profiles/per-user/moustachioed/etc/profile.d/hm-session-vars.sh
|
|
#
|
|
#home.sessionVariables = {
|
|
# EDITOR = "nvim";
|
|
#};
|
|
|
|
#home.shellAliases = {
|
|
# "ll" = "ls -la";
|
|
# "t" = "tmuxp";
|
|
# "tl" = "tmuxp load";
|
|
# };
|
|
|
|
news.display = "silent";
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|