continue refactor

This commit is contained in:
2025-08-25 15:14:10 -05:00
parent dffc249cf5
commit 2c08f3f50e
11 changed files with 286 additions and 189 deletions

View File

@@ -3,17 +3,24 @@
config = {
home-manager = {
backupFileExtension = ".backup";
useUserPackages = true;
useGlobalPkgs = true;
sharedModules = [
inputs.sops-nix.homeManagerModules.sops
inputs.home-manager-config
];
config = {
imports = [
inputs.nathan
];
config = {
homeconfig = {
wal.enable = true;
calcurse.enable = true;
graphical = false;
minimal = true;
homeScripts.enable = false;
};
home.homeDirectory = "/data/data/com.termux.nix/files/home";
home.homeDirectory = config.user.home;
};
};
};
@@ -21,9 +28,13 @@
terminal.font = "${pkgs.fira-code}/share/fonts/truetype/FiraCode-VF.ttf";
user = {
userName = "nathan";
uid = 10472; #update this for your device!
shell = "${pkgs.zsh}/bin/zsh";
};
time.timeZone = "America/Chicago";
android-integration = {};
system.stateVersion = "24.11";

View File

@@ -81,6 +81,8 @@
home-manager = {
backupFileExtension = "backup";
extraSpecialArgs = { inherit inputs; };
useUserPackages = true;
useGlobalPkgs = true;
sharedModules = [
inputs.sops-nix.homeManagerModules.sops
inputs.home-manager-config