Try to add home-manager configuration

This commit is contained in:
Joshua Yuen 2026-01-20 15:32:08 -05:00
parent dfee7cfa29
commit c7d702aa6b
Signed by: josh
GPG Key ID: 502720BC22ED411C
3 changed files with 16 additions and 1 deletions

View File

@ -27,6 +27,7 @@
nixpkgs, nixpkgs,
home-manager, home-manager,
install-system, install-system,
stylix,
... ...
}@inputs: }@inputs:
let let
@ -79,6 +80,14 @@
}; };
}; };
homeConfigurations.josh = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.${system};
modules = [
./modules/home
stylix.homeModules.stylix
];
};
devShell.${system} = nixpkgs.legacyPackages.${system}.pkgs.mkShell { devShell.${system} = nixpkgs.legacyPackages.${system}.pkgs.mkShell {
packages = with nixpkgs.legacyPackages.${system}.pkgs; [ packages = with nixpkgs.legacyPackages.${system}.pkgs; [
nil nil

View File

@ -1,5 +1,4 @@
{ {
inputs,
... ...
}: }:
{ {
@ -10,6 +9,7 @@
./kitty.nix ./kitty.nix
./overlays.nix ./overlays.nix
./stylix.nix ./stylix.nix
./system.nix
./vscodium.nix ./vscodium.nix
./xdg.nix ./xdg.nix
./zsh ./zsh

6
modules/home/system.nix Normal file
View File

@ -0,0 +1,6 @@
{
...
}:
{
system.stateVersion = "25.05";
}