Modularize nix packages into 'packages.nix'
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
{ ... }:
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home.username = "hektor";
|
||||
home.homeDirectory = "/home/hektor";
|
||||
home.stateVersion = "25.05";
|
||||
home.packages = [ ];
|
||||
|
||||
home.packages = import ./packages.nix { inherit pkgs; };
|
||||
}
|
||||
|
||||
3
.config/home-manager/hosts/work/packages.nix
Normal file
3
.config/home-manager/hosts/work/packages.nix
Normal file
@@ -0,0 +1,3 @@
|
||||
{ pkgs }:
|
||||
|
||||
with pkgs; [ ]
|
||||
Reference in New Issue
Block a user