-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use lima for macOS setup * Update comment * Don't depend on unstable channel in macOS as possible * Fix priority of mkDefault * Update lima default home directory * Drop maccy in forked nix * Drop notify action for now * Load lima default instance for ssh-agent * Clarify how to use container in lima * Uninstall podman and docker-compose from macOS
- Loading branch information
Showing
11 changed files
with
72 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
# - https://discourse.nixos.org/t/differences-between-nix-channels/13998 | ||
# How to update the revision | ||
# - `nix flake update --commit-lock-file` # https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-flake-update.html | ||
# TODO: Use nixpkgs-24.05-darwin only in macOS. See GH-910 | ||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05"; | ||
edge-nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; | ||
# https://github.com/nix-community/home-manager/blob/release-24.05/docs/manual/nix-flakes.md | ||
|
@@ -249,6 +250,16 @@ | |
x86-macOS // { modules = [ ./home-manager/kachick.nix ]; } | ||
); | ||
|
||
"kachick@lima" = home-manager.lib.homeManagerConfiguration ( | ||
x86-Linux | ||
// { | ||
modules = [ | ||
./home-manager/kachick.nix | ||
./home-manager/lima.nix | ||
]; | ||
} | ||
); | ||
|
||
"[email protected]" = home-manager.lib.homeManagerConfiguration ( | ||
x86-Linux | ||
// { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ config, ... }: | ||
|
||
{ | ||
# https://github.com/lima-vm/lima/blame/0d058b0eaa2d1bafc867298503a9239e89c202a8/templates/default.yaml#L295-L296 | ||
home.homeDirectory = "/home/${config.home.username}.linux"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.