Skip to content

Instantly share code, notes, and snippets.

@jevy
Created February 17, 2022 13:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jevy/f0afe82f19578ec214ad8c4afb02be67 to your computer and use it in GitHub Desktop.
Save jevy/f0afe82f19578ec214ad8c4afb02be67 to your computer and use it in GitHub Desktop.
Home-manager Flake
{
description = "Home Manager configuration of Jevy";
inputs = {
# Specify the source of Home Manager and Nixpkgs
home-manager.url = "github:nix-community/home-manager/release-21.11";
nixpkgs.url = "github:nixos/nixpkgs/nixos-21.11";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
duplicity_script.url = "/home/jevin/code/personal/duplicity_script";
};
outputs = { home-manager, ... }:
let
system = "x86_64-linux";
username = "jevin";
in {
homeConfigurations.${username} = home-manager.lib.homeManagerConfiguration {
# Specify the path to your home configuration here
configuration = import ./home.nix;
inherit system username;
homeDirectory = "/home/${username}";
# Update the state version as needed.
# See the changelog here:
# https://nix-community.github.io/home-manager/release-notes.html#sec-release-21.05
stateVersion = "21.11";
# Optionally use extraSpecialArgs
# to pass through arguments to home.nix
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment