add home manager input

This commit is contained in:
Yisroel Baum 2026-03-29 16:38:02 +03:00
parent 2a5e18f494
commit 66da6d04fb
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

View file

@ -2,8 +2,15 @@
description = "A simple NixOS flake";
inputs = {
# NixOS official package source, using the nixos-25.11 branch here
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
home-manager = {
url = "github:nix-community/home-manager/release-25.11";
# The `follows` keyword in inputs is used for inheritance.
# Here, `inputs.nixpkgs` of home-manager is kept consistent with
# the `inputs.nixpkgs` of the current flake,
# to avoid problems caused by different versions of nixpkgs.
inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, ... }@inputs: {