Updated for IVR needs

This commit is contained in:
Greg Hellings
2023-11-03 10:06:32 -05:00
parent 145c6e30fb
commit ca20745d12
5 changed files with 114 additions and 66 deletions
+2 -2
View File
@@ -9,13 +9,13 @@
let
system = "x86_64-linux";
pkgs = (import inputs.nixunstable { inherit system overlays; });
in inputs.hm.lib.homeManagerConfiguration {
in inputs.hmunstable.lib.homeManagerConfiguration {
inherit pkgs;
modules = [ ./home.nix ];
extraSpecialArgs = {
inherit inputs;
gui = false;
gnome = true;
gnome = false;
host = "ivr";
username = "gregory.hellings";
};
+3 -1
View File
@@ -1,4 +1,4 @@
{ pkgs, lib, ...}:
{ pkgs, lib, inputs, ...}:
{
imports = [
@@ -8,8 +8,10 @@
home = {
packages = with pkgs; [
aacs
bruno
direnv
home-manager
pipenv
];
file.".pip/pip.conf".text = (lib.strings.concatStringsSep "\n" [
"[global]"
-6
View File
@@ -82,14 +82,8 @@ in
plugins = {
airline.enable = true;
gitgutter.enable = true;
gruvbox.enable = true;
fugitive.enable = true;
notify.enable = true;
packer = {
enable = true;
plugins = [
];
};
};
extraConfigLua = builtins.readFile ./vim/extra.lua;
extraConfigVim = builtins.readFile ./vim/extra.vimrc;