Skip to content

Commit

Permalink
Refactor Nix configuration by removing commented imports and updating…
Browse files Browse the repository at this point in the history
… hostPlatform settings
  • Loading branch information
ryanwclark committed Feb 9, 2025
1 parent 269af61 commit d6e90fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
8 changes: 0 additions & 8 deletions home/mini.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,17 @@

{
imports = [
# ./global
./features/atuin
./features/bat
./features/cli
# ./features/compression
./features/eza
./features/fastfetch
./features/fd
./features/fonts
./features/fzf
./features/git
# ./features/kubernetes
./features/lazygit
# ./features/networking-utils
./features/nixvim
./features/ripgrep
# ./features/shell
./features/starship
# ./features/sys-stats
./features/tmux
./features/yazi
./features/zoxide
Expand Down
4 changes: 3 additions & 1 deletion hosts/mini/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,10 @@ in
};

# The platform the configuration will be used on.
# Remove allowBroken
nixpkgs = {
hostPlatform = "aarch64-darwin";
hostPlatform = lib.mkDefault "aarch64-darwin";
allowBroken = true;
config.allowUnfree = true;
};

Expand Down

0 comments on commit d6e90fe

Please sign in to comment.