- Fix hardcoded user path in webapps.nix (use homeDirectory) - Normalize wallpapers option to use .enable suffix - Remove duplicate FZF keybind declaration - Update comments to match actual implementation
17 lines
256 B
Nix
17 lines
256 B
Nix
{
|
|
imports = [
|
|
../common
|
|
./configuration.nix
|
|
./programs.nix
|
|
./secrets.nix
|
|
./services
|
|
];
|
|
|
|
extraServices = {
|
|
flatpak.enable = false;
|
|
ollama.enable = false;
|
|
podman.enable = false;
|
|
virtualisation.enable = false;
|
|
};
|
|
}
|