mirror of
https://github.com/callumio/nixfiles.git
synced 2026-08-06 20:49:17 +01:00
15 lines
320 B
Nix
15 lines
320 B
Nix
{
|
|
config,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
flake.nixosModules.profile-graphical = {
|
|
imports = [
|
|
config.flake.nixosModules.profile-base
|
|
config.flake.nixosModules.gpg-pinentry-wayland
|
|
inputs.stylix.nixosModules.stylix
|
|
];
|
|
home-manager.sharedModules = [ config.flake.homeManagerModules.emacs ];
|
|
};
|
|
}
|