1
0

first config

This commit is contained in:
Timo Bingmann
2025-07-09 13:39:51 -07:00
commit c38493b68b
5 changed files with 334 additions and 0 deletions

25
flake.nix Normal file
View File

@@ -0,0 +1,25 @@
{
description = "Home Manager configuration for tbingmann";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { nixpkgs, home-manager, ... }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
homeConfigurations."tbingmann" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
# Specify the path to your home configuration module
modules = [ ./home.nix ];
};
};
}