This commit is contained in:
Daniel Flanagan 2024-01-19 09:40:57 -06:00
parent fd8055f1ab
commit 6791f73744
Signed by: lytedev
GPG key ID: 5B2020A0F9921EF4
2 changed files with 21 additions and 18 deletions

View file

@ -98,24 +98,25 @@
# Available through 'home-manager --flake .#your-username@your-hostname' # Available through 'home-manager --flake .#your-username@your-hostname'
homeConfigurations = { homeConfigurations = {
# TODO: non-system-specific home configurations? # TODO: non-system-specific home configurations?
# "base-x86_64-linux" = let "deck" = let
# system = "x86_64-linux"; system = "x86_64-linux";
# in in
# home-manager.lib.homeManagerConfiguration { home-manager.lib.homeManagerConfiguration {
# pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
# extraSpecialArgs = { extraSpecialArgs = {
# inherit inputs outputs system; inherit inputs outputs system;
# }; inherit (outputs) colors font;
# modules = with outputs.homeManagerModules; [linux]; };
# }; modules = with outputs.homeManagerModules; [
# "base-aarch64-darwin" = let common
# system = "aarch64-darwin"; {
# in home.homeDirectory = "/home/deck";
# home-manager.lib.homeManagerConfiguration { home.username = "deck";
# pkgs = nixpkgs.legacyPackages.${system}; home.stateVersion = "24.05";
# extraSpecialArgs = {inherit inputs outputs system;}; }
# modules = with outputs.homeManagerModules; [macos]; linux
# }; ];
};
}; };
# Disk partition schemes and functions # Disk partition schemes and functions

View file

@ -22,6 +22,8 @@
tmux tmux
]; ];
programs.home-manager.enable = true;
home = { home = {
username = lib.mkDefault "lytedev"; username = lib.mkDefault "lytedev";
homeDirectory = lib.mkDefault "/home/lytedev"; homeDirectory = lib.mkDefault "/home/lytedev";