Use alejandra for formatting Nix files
This commit is contained in:
parent
7db4788e49
commit
7302dae7ec
17 changed files with 273 additions and 244 deletions
|
@ -1,24 +1,28 @@
|
|||
{ inputs, pkgs, self, system, username }:
|
||||
|
||||
let
|
||||
shared-config = import ../shared/home-manager.nix { inherit inputs pkgs self username; };
|
||||
shared-packages = import ../shared/home-manager-packages.nix { inherit inputs pkgs; };
|
||||
{
|
||||
inputs,
|
||||
pkgs,
|
||||
self,
|
||||
system,
|
||||
username,
|
||||
}: let
|
||||
shared-config = import ../shared/home-manager.nix {inherit inputs pkgs self username;};
|
||||
shared-packages = import ../shared/home-manager-packages.nix {inherit inputs pkgs;};
|
||||
in
|
||||
inputs.home-manager.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
inputs.home-manager.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
|
||||
modules = [
|
||||
{
|
||||
imports = [ shared-config ];
|
||||
modules = [
|
||||
{
|
||||
imports = [shared-config];
|
||||
|
||||
home.packages = shared-packages;
|
||||
home.packages = shared-packages;
|
||||
|
||||
home.sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
PATH = "$PATH:./vendor/bin:./node_modules/.bin";
|
||||
PULUMI_SKIP_UPDATE_CHECK = "true";
|
||||
RIPGREP_CONFIG_PATH = "$HOME/.config/ripgrep/config";
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
||||
home.sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
PATH = "$PATH:./vendor/bin:./node_modules/.bin";
|
||||
PULUMI_SKIP_UPDATE_CHECK = "true";
|
||||
RIPGREP_CONFIG_PATH = "$HOME/.config/ripgrep/config";
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue