added HAKASE hostname

This commit is contained in:
lsoriano-mcm
2025-07-04 21:46:22 -05:00
parent f8386beb6c
commit ca68b1de73
4 changed files with 13 additions and 1 deletions
-1
View File
@@ -10,7 +10,6 @@
size = "12";
shell = "fish"; # or zsh
aliases = {
ls = "ls --color=auto";
};
};
allowUnfree = true;
+6
View File
@@ -0,0 +1,6 @@
{
imports = [
../modules/home/desktop.nix
../modules/home/terminal.nix
];
}
+5
View File
@@ -6,9 +6,14 @@
...
}: {
imports = [
inputs.home-manager.nixosModules.home-manager
./hardware-configuration.nix
];
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.${myConfig.essentials.Username} = import ../../home/hakase.nix;
nixpkgs.config.allowUnfree = myConfig.general.allowUnfree;
boot.loader = {
+2
View File
@@ -3,6 +3,8 @@
enable = true;
git = true;
colors = "auto";
icons = "auto";
enableZshIntegration = true;
enableFishIntegration = true;
enableBashIntegration = true;