16 lines
183 B
Nix
16 lines
183 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../modules/console.nix
|
|
];
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
home.packages = [];
|
|
home.stateVersion = "23.05";
|
|
}
|