12 lines
261 B
Nix
12 lines
261 B
Nix
{ config, inputs, pkgs, ... }:
|
|
let
|
|
username = config.myOptions.other.system.username;
|
|
in {
|
|
home-manager.users.${username} = {
|
|
home.packages = let
|
|
fenix = inputs.fenix.packages.${pkgs.system};
|
|
|
|
in with pkgs; [
|
|
];
|
|
};
|
|
}
|