This commit is contained in:
Nathan McCarty 2022-09-04 03:21:18 -04:00
parent 53959dcedc
commit 6b96e82cd3
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
3 changed files with 27 additions and 1 deletions

View File

@ -171,6 +171,20 @@
system = "aarch64-linux";
extraModules = [
./modules/nix-on-droid/default.nix
({ pkgs, lib, config, ... }: {
# Home manager configuration
home-manager = {
useUserPackages = true;
useGlobalPkgs = true;
extraSpecialArgs = {
inputs = inputs;
nixosConfig = config;
};
sharedModules = [
./home-manager/linux/default.nix
];
};
})
];
};
};

View File

@ -1,3 +1,6 @@
{ config, lib, pkgs, ... }:
{ }
{
home-manager.config = import ./home.nix;
}

9
machines/tablet/home.nix Normal file
View File

@ -0,0 +1,9 @@
{ config, lib, pkgs, ... }:
{
nathan = {
config = {
isDesktop = true;
};
};
}