This commit is contained in:
Anthony Cicchetti 2023-04-19 18:52:59 -04:00
parent ff0e375584
commit 217403e314
5 changed files with 63 additions and 43 deletions

View file

@ -17,24 +17,30 @@
};
};
outputs = { nixpkgs, home-manager, devenv, nix-index-database, ... }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
homeConfigurations.acicchetti = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
outputs = {
nixpkgs,
home-manager,
devenv,
nix-index-database,
...
}: let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
formatter."${system}" = nixpkgs.legacyPackages."${system}".alejandra;
homeConfigurations.acicchetti = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
# Specify your home configuration modules here, for example,
# the path to your home.nix.
modules = [
{ home.packages = [devenv.packages."${system}".devenv]; }
nix-index-database.hmModules.nix-index
./home.nix
];
# Specify your home configuration modules here, for example,
# the path to your home.nix.
modules = [
{home.packages = [devenv.packages."${system}".devenv];}
nix-index-database.hmModules.nix-index
./home.nix
];
# Optionally use extraSpecialArgs
# to pass through arguments to home.nix
};
# Optionally use extraSpecialArgs
# to pass through arguments to home.nix
};
};
}

View file

@ -1,6 +1,8 @@
{ config, pkgs, ... }:
{
config,
pkgs,
...
}: {
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = "acicchetti";
@ -18,7 +20,6 @@
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = [
# # It is sometimes useful to fine-tune packages, for example, by applying
# # overrides. You can do that directly here, just don't forget the
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of
@ -68,8 +69,8 @@
programs.nix-index.enable = true;
imports = [
./modules/packages
./modules/files.nix
./modules/environment.nix
./modules/packages
./modules/files.nix
./modules/environment.nix
];
}

View file

@ -1,6 +1,10 @@
{ pkgs, lib, config, ... }:
{
home.sessionVariables = {
EDITOR="nvim";
};
pkgs,
lib,
config,
...
}: {
home.sessionVariables = {
EDITOR = "nvim";
};
}

View file

@ -1,4 +1,8 @@
{pkgs, lib, config, ...}:
{
home.file.".config/zellij/config.kdl".source = ../../../zellij/config.kdl;
pkgs,
lib,
config,
...
}: {
home.file.".config/zellij/config.kdl".source = ../../../zellij/config.kdl;
}

View file

@ -1,15 +1,20 @@
{ pkgs, lib, config, ...}:
{ home.packages = with pkgs;
[
just
difftastic
git
zsh
erdtree
htop
ripgrep
zellij
neovim
bat
];
{
pkgs,
lib,
config,
...
}: {
home.packages = with pkgs; [
just
difftastic
git
zsh
erdtree
htop
ripgrep
zellij
neovim
bat
comma
];
}