initial commit

This commit is contained in:
2026-01-15 20:39:00 +01:00
commit a1026de8e1
4 changed files with 114 additions and 0 deletions

30
flake.nix Normal file
View File

@@ -0,0 +1,30 @@
{
description = "My Home Manager configuration";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
home-manager = {
url = "github:nix-community/home-manager/release-25.11";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, home-manager, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in
{
homeConfigurations = {
avravels = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
# ✅ Load ZSH module properly
modules = [
./home.nix
];
};
};
};
}