Fix on new file and content

This commit is contained in:
Laurent Gueret
2026-02-11 13:23:11 +01:00
parent e75b09a750
commit 6456c71f20
5 changed files with 21 additions and 22 deletions
+9 -5
View File
@@ -1,16 +1,16 @@
{ ... }:
{ import-tree, ... }:
{
home-manager.users.alistreaza = {
imports = [
(import-tree ../../common)
];
home = {
username = "alistreaza";
homeDirectory = /Users/alistreaza;
};
# No Home Application Folders
targets.darwin.linkApps.enable = false;
targets.darwin.copyApps.enable = false;
# Apps
home.shell.zsh = true;
home.shell.git = true;
@@ -27,6 +27,10 @@
home.homebrew.keka = true;
# No Home Application Folders
targets.darwin.linkApps.enable = false;
targets.darwin.copyApps.enable = false;
# The state version is required and should stay at the version you
# originally installed.
home.stateVersion = "25.11";
+1 -6
View File
@@ -1,9 +1,4 @@
{ import-tree, ... }:
{ ... }:
{
imports = [
./partials/users.nix
(import-tree ./apps)
];
nixpkgs.hostPlatform = "aarch64-darwin";
}
@@ -3,8 +3,7 @@
home-manager.users.alistreaza = {
imports = [
(import-tree ./options)
(import-tree ./partials)
(import-tree ../../common)
];
home = {
@@ -12,6 +11,7 @@
homeDirectory = "/home/alistreaza";
};
# Apps
home.shell.zsh = true;
home.shell.git = true;
@@ -31,6 +31,8 @@
# Markdown Editor
home.editor.obsidian.enable = false;
# The state version is required and should stay at the version you
# originally installed.
home.stateVersion = "25.11";
};
}