Merge pull request #29 from H1rono/update-20240624 #69
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
name: Home Manager | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@V27 | |
with: | |
nix_path: "nixpkgs=channel:release-23.11" | |
- uses: DeterminateSystems/magic-nix-cache-action@v6 | |
- run: | | |
nix-channel --add https://github.com/nix-community/home-manager/archive/master.tar.gz home-manager | |
nix-channel --update | |
- run: | | |
nix run nixpkgs#gnused -- -i -e "s/kh/$USER/" ./flake.nix | |
nix run github:nix-community/home-manager/release-23.11 -- build --flake . |