feat: Change nix formatter to alejandra
This commit is contained in:
parent
0b8b647f05
commit
b4c3dfec42
229 changed files with 2528 additions and 2884 deletions
|
|
@ -4,44 +4,42 @@
|
|||
self,
|
||||
rootPath,
|
||||
...
|
||||
}:
|
||||
let
|
||||
}: let
|
||||
inherit (self) outputs;
|
||||
homeModules =
|
||||
(
|
||||
with lib;
|
||||
pipe (rootPath + "/home") [
|
||||
builtins.readDir
|
||||
(filterAttrs (_key: value: value == "directory"))
|
||||
(filterAttrs (
|
||||
key: _value:
|
||||
!builtins.elem key [
|
||||
"modules"
|
||||
"extra"
|
||||
]
|
||||
))
|
||||
builtins.attrNames
|
||||
(flip genAttrs (name: import (rootPath + "/home/${name}/modules")))
|
||||
]
|
||||
pipe (rootPath + "/home") [
|
||||
builtins.readDir
|
||||
(filterAttrs (_key: value: value == "directory"))
|
||||
(filterAttrs (
|
||||
key: _value:
|
||||
!builtins.elem key [
|
||||
"modules"
|
||||
"extra"
|
||||
]
|
||||
))
|
||||
builtins.attrNames
|
||||
(flip genAttrs (name: import (rootPath + "/home/${name}/modules")))
|
||||
]
|
||||
)
|
||||
// {
|
||||
default = import "${toString rootPath}/home/modules";
|
||||
extra = import "${toString rootPath}/home/extra";
|
||||
};
|
||||
makeHomeConfiguration =
|
||||
{
|
||||
hostName,
|
||||
unixName ? "david",
|
||||
system ? "x86_64-linux",
|
||||
nixpkgs ? inputs.nixpkgs,
|
||||
home-manager ? inputs.home-manager,
|
||||
}:
|
||||
{
|
||||
"${unixName}@${hostName}" = home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = import nixpkgs {
|
||||
localSystem = { inherit system; };
|
||||
};
|
||||
modules = [
|
||||
makeHomeConfiguration = {
|
||||
hostName,
|
||||
unixName ? "david",
|
||||
system ? "x86_64-linux",
|
||||
nixpkgs ? inputs.nixpkgs,
|
||||
home-manager ? inputs.home-manager,
|
||||
}: {
|
||||
"${unixName}@${hostName}" = home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = import nixpkgs {
|
||||
localSystem = {inherit system;};
|
||||
};
|
||||
modules =
|
||||
[
|
||||
(rootPath + "/home/${unixName}/configurations/${hostName}")
|
||||
]
|
||||
++ (with homeModules; [
|
||||
|
|
@ -53,32 +51,30 @@ let
|
|||
]
|
||||
++ [
|
||||
{
|
||||
lib = { inherit (lib) youthlic; };
|
||||
lib = {inherit (lib) youthlic;};
|
||||
}
|
||||
];
|
||||
extraSpecialArgs = {
|
||||
inherit
|
||||
inputs
|
||||
outputs
|
||||
unixName
|
||||
hostName
|
||||
system
|
||||
rootPath
|
||||
;
|
||||
};
|
||||
extraSpecialArgs = {
|
||||
inherit
|
||||
inputs
|
||||
outputs
|
||||
unixName
|
||||
hostName
|
||||
system
|
||||
rootPath
|
||||
;
|
||||
};
|
||||
};
|
||||
in
|
||||
{
|
||||
};
|
||||
in {
|
||||
flake = {
|
||||
homeConfigurations =
|
||||
with lib;
|
||||
foldr (a: b: a // b) { } (
|
||||
homeConfigurations = with lib;
|
||||
foldr (a: b: a // b) {} (
|
||||
pipe
|
||||
[
|
||||
# Hostname
|
||||
]
|
||||
[ (map (hostName: makeHomeConfiguration { inherit hostName; })) ]
|
||||
[
|
||||
# Hostname
|
||||
]
|
||||
[(map (hostName: makeHomeConfiguration {inherit hostName;}))]
|
||||
);
|
||||
inherit homeModules;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue