Home Manager: Rewrite to NixOS-like config.
This commit is contained in:
parent
db9d6d82dc
commit
8e1ccc4772
32
flake.nix
32
flake.nix
|
@ -268,7 +268,7 @@
|
|||
util = import ./lib/Util.nix { inherit lib; };
|
||||
|
||||
mkCommonHome =
|
||||
username: homeDirectory: system: modules:
|
||||
username: system:
|
||||
let
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
pkgsStable = nixpkgsStable.legacyPackages.${system};
|
||||
|
@ -295,11 +295,8 @@
|
|||
./home/HomeManager.nix
|
||||
{
|
||||
home.hm = {
|
||||
inherit username homeDirectory;
|
||||
inherit username;
|
||||
enable = true;
|
||||
package = {
|
||||
core.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -314,23 +311,20 @@
|
|||
}
|
||||
|
||||
inputs.stylix.homeManagerModules.stylix
|
||||
] ++ modules ++ (self.findFiles ./config);
|
||||
] ++ (self.findFiles ./home/user/${system}/${username}) ++ (self.findFiles ./config);
|
||||
};
|
||||
};
|
||||
|
||||
x86LinuxHome = username: modules: mkCommonHome username "/home/${username}" "x86_64-linux" modules;
|
||||
x86LinuxRoot = mkCommonHome "root" "/root" "x86_64-linux" [ ];
|
||||
in
|
||||
nixpkgs.lib.foldl' (acc: h: acc // h) { } [
|
||||
x86LinuxRoot
|
||||
(x86LinuxHome "voronind" [
|
||||
{
|
||||
home.hm.package = {
|
||||
common.enable = true;
|
||||
};
|
||||
}
|
||||
])
|
||||
];
|
||||
nixpkgs.lib.foldl' (acc: h: acc // h) { } (
|
||||
map (
|
||||
system:
|
||||
nixpkgs.lib.foldl' (acc: h: acc // h) { } (
|
||||
map (username: mkCommonHome username system) (
|
||||
builtins.attrNames (builtins.readDir ./home/user/${system})
|
||||
)
|
||||
)
|
||||
) (builtins.attrNames (builtins.readDir ./home/user))
|
||||
);
|
||||
|
||||
# Android.
|
||||
nixOnDroidConfigurations.default =
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
util,
|
||||
lib,
|
||||
pkgs,
|
||||
__findFile,
|
||||
...
|
||||
}@args:
|
||||
with lib;
|
||||
|
@ -13,7 +14,7 @@ let
|
|||
programs = import ./program args;
|
||||
in
|
||||
{
|
||||
imports = (util.ls ./user);
|
||||
imports = (util.ls <user>);
|
||||
|
||||
options = {
|
||||
home.nixos = {
|
||||
|
|
9
home/user/x86_64-linux/root/default.nix
Normal file
9
home/user/x86_64-linux/root/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{ ... }:
|
||||
{
|
||||
home.hm = {
|
||||
homeDirectory = "/root";
|
||||
package = {
|
||||
core.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
9
home/user/x86_64-linux/voronind/default.nix
Normal file
9
home/user/x86_64-linux/voronind/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{ ... }:
|
||||
{
|
||||
home.hm = {
|
||||
homeDirectory = "/home/voronind";
|
||||
package = {
|
||||
core.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue