Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
takeokunn committed Jan 18, 2025
1 parent 7b1ac83 commit 969cfa6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
3 changes: 3 additions & 0 deletions nix-darwin/config/time.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
time.timeZone = "Asia/Tokyo";
}
18 changes: 10 additions & 8 deletions nix-darwin/default.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
{ pkgs, username, ... }:
let
nix = import ./config/nix.nix;
fonts = import ./config/fonts.nix { inherit pkgs; };
services = import ./config/services;
system = import ./config/system.nix { inherit pkgs; };
homebrew = import ./config/homebrew.nix;
launchd = import ./config/launchd.nix { inherit pkgs; };
networking = import ./config/networking.nix;
nix = import ./config/nix.nix;
security = import ./config/security.nix { inherit username; };
launchd = import ./config/launchd.nix { inherit pkgs; };
services = import ./config/services;
system = import ./config/system.nix { inherit pkgs; };
time = import ./config/time.nix;
in
{
imports = [
nix
services
fonts
system
homebrew
launchd
networking
nix
security
launchd
services
system
time
];
}

0 comments on commit 969cfa6

Please sign in to comment.