Modularize nix packages into 'packages.nix'

main
Hektor Misplon 2025-09-17 15:02:23 +02:00
parent fe5ebec536
commit 46e7625928
2 changed files with 6 additions and 2 deletions

View File

@ -1,8 +1,9 @@
{ ... }: { pkgs, ... }:
{ {
home.username = "hektor"; home.username = "hektor";
home.homeDirectory = "/home/hektor"; home.homeDirectory = "/home/hektor";
home.stateVersion = "25.05"; home.stateVersion = "25.05";
home.packages = [ ];
home.packages = import ./packages.nix { inherit pkgs; };
} }

View File

@ -0,0 +1,3 @@
{ pkgs }:
with pkgs; [ ]