48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
{ config, lib, pkgs, inputs, ... }: {
|
|
|
|
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 = {
|
|
graphical = false;
|
|
minimal = true;
|
|
homeScripts.enable = false;
|
|
};
|
|
|
|
home.homeDirectory = config.user.home;
|
|
};
|
|
};
|
|
};
|
|
|
|
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";
|
|
|
|
environment = {
|
|
etcBackupExtension = ".backup";
|
|
motd = "";
|
|
};
|
|
};
|
|
}
|