Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 935 Bytes

File metadata and controls

37 lines (26 loc) · 935 Bytes

Home manager managed by Nix

How to use this repository

  1. Install Nix:

    https://nixos.org/download

  2. Install home manager:

    nix-channel --add https://github.com/nix-community/home-manager/archive/release-24.11.tar.gz home-manager
    nix-channel --add https://nixos.org/channels/nixos-24.11 nixpkgs
    nix-channel --add https://nixos.org/channels/nixpkgs-unstable nixpkgs-unstable
    nix-channel --update
    nix-shell '<home-manager>' -A install
  3. Download this repository, and run home manager:

    NIXPKGS_ALLOW_UNFREE="1" home-manager switch

One-time configurations

There are some configurations that are device-specific and can't be checked on this repository.

Local git configuration

Create a ~/.gitconfig.local file, with the following content:

```gitconfig
[user]
    name = Marc
    email = marc@example.com
    signingkey = <key id>
```