Add neovim config; Remove things
This commit is contained in:
57
nix/common.nix
Normal file
57
nix/common.nix
Normal file
@ -0,0 +1,57 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./user/sh.nix
|
||||
./user/tmux.nix
|
||||
./user/git.nix
|
||||
./user/dev.nix
|
||||
./user/nvim.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
# neovim
|
||||
|
||||
(pkgs.nerdfonts.override { fonts = [ "FiraCodeMono" ]; })
|
||||
|
||||
# (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";
|
||||
#};
|
||||
|
||||
news.display = "silent";
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
}
|
||||
Reference in New Issue
Block a user