Update home-manager stuff and some other configs

This commit is contained in:
Tobias Reisinger 2026-08-27 18:47:11 +02:00
commit 9177d97e7a
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
8 changed files with 86 additions and 8 deletions

View file

@ -0,0 +1,31 @@
{
description = "Home Manager configuration of serguzim";
inputs = {
# Specify the source of Home Manager and Nixpkgs.
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
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."serguzim" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
# Specify your home configuration modules here, for example,
# the path to your home.nix.
modules = [ ./home.nix ];
# Optionally use extraSpecialArgs
# to pass through arguments to home.nix
};
};
}